Fix static linking: add missing static to thr_defer
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 1 Nov 2012 20:37:04 +0000 (16:37 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 1 Nov 2012 20:37:04 +0000 (16:37 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
urcu-defer-impl.h

index a7d0b2f7c45aa0a1054d70aac989293b63c87466..fc9d4bd804501eba9bb35c329edb655b4d0da786 100644 (file)
@@ -363,7 +363,7 @@ void _defer_rcu(void (*fct)(void *p), void *p)
        wake_up_defer();
 }
 
-void *thr_defer(void *args)
+static void *thr_defer(void *args)
 {
        for (;;) {
                /*
This page took 0.025274 seconds and 4 git commands to generate.