From 47465629e707a7e425fd15bf690d65c5da5bd998 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 2 Mar 2015 15:44:27 -0800 Subject: Deglobalize internal variables in timer_routines.c. --- sysdeps/pthread/timer_routines.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/pthread') diff --git a/sysdeps/pthread/timer_routines.c b/sysdeps/pthread/timer_routines.c index f2d48f9..e0f3115 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 -- cgit v1.1