about summary refs log tree commit diff
path: root/sysdeps/pthread
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-03-02 15:44:27 -0800
committerRoland McGrath <roland@hack.frob.com>2015-03-02 15:44:27 -0800
commit47465629e707a7e425fd15bf690d65c5da5bd998 (patch)
tree2f86f2d56c3e00f6b5f062ad505e843f04e6da41 /sysdeps/pthread
parent6d08b0223aa3b3152ea7e9beb2b8f2a151b43109 (diff)
downloadglibc-47465629e707a7e425fd15bf690d65c5da5bd998.tar.gz
glibc-47465629e707a7e425fd15bf690d65c5da5bd998.tar.xz
glibc-47465629e707a7e425fd15bf690d65c5da5bd998.zip
Deglobalize internal variables in timer_routines.c.
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r--sysdeps/pthread/timer_routines.c6
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