From: Roland McGrath Date: Mon, 2 Mar 2015 23:44:27 +0000 (-0800) Subject: Deglobalize internal variables in timer_routines.c. X-Git-Tag: glibc-2.22~523 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47465629e707a7e425fd15bf690d65c5da5bd998;p=thirdparty%2Fglibc.git Deglobalize internal variables in timer_routines.c. --- diff --git a/ChangeLog b/ChangeLog index 0412b046ced..d59e1db72ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-03-02 Roland McGrath + + * sysdeps/pthread/timer_routines.c + (timer_free_list, thread_free_list, thread_active_list): Make static. + 2015-03-02 Joseph Myers [BZ #17779] diff --git a/sysdeps/pthread/timer_routines.c b/sysdeps/pthread/timer_routines.c index f2d48f9fc49..e0f31156bff 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