diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/pthread/timer_routines.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/pthread/timer_routines.c b/sysdeps/pthread/timer_routines.c index f2d48f9fc4..e0f31156bf 100644 --- a/sysdeps/pthread/timer_routines.c +++ b/sysdeps/pthread/timer_routines.c @@ -54,9 +54,9 @@ int __timer_init_failed; struct thread_node __timer_signal_thread_rclk; /* Lists to keep free and used timers and threads. */ -struct list_head timer_free_list; -struct list_head thread_free_list; -struct list_head thread_active_list; +static struct list_head timer_free_list; +static struct list_head thread_free_list; +static struct list_head thread_active_list; #ifdef __NR_rt_sigqueueinfo |