mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 06:20:06 +00:00
Deglobalize internal variables in timer_routines.c.
This commit is contained in:
parent
6d08b0223a
commit
47465629e7
@ -1,3 +1,8 @@
|
|||||||
|
2015-03-02 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* sysdeps/pthread/timer_routines.c
|
||||||
|
(timer_free_list, thread_free_list, thread_active_list): Make static.
|
||||||
|
|
||||||
2015-03-02 Joseph Myers <joseph@codesourcery.com>
|
2015-03-02 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
[BZ #17779]
|
[BZ #17779]
|
||||||
|
@ -54,9 +54,9 @@ int __timer_init_failed;
|
|||||||
struct thread_node __timer_signal_thread_rclk;
|
struct thread_node __timer_signal_thread_rclk;
|
||||||
|
|
||||||
/* Lists to keep free and used timers and threads. */
|
/* Lists to keep free and used timers and threads. */
|
||||||
struct list_head timer_free_list;
|
static struct list_head timer_free_list;
|
||||||
struct list_head thread_free_list;
|
static struct list_head thread_free_list;
|
||||||
struct list_head thread_active_list;
|
static struct list_head thread_active_list;
|
||||||
|
|
||||||
|
|
||||||
#ifdef __NR_rt_sigqueueinfo
|
#ifdef __NR_rt_sigqueueinfo
|
||||||
|
Loading…
Reference in New Issue
Block a user