Skip to content

Commit

Permalink
Deglobalize internal variables in timer_routines.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland McGrath committed Mar 2, 2015
1 parent 6d08b02 commit 4746562
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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>

[BZ #17779]
Expand Down
6 changes: 3 additions & 3 deletions sysdeps/pthread/timer_routines.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4746562

Please sign in to comment.