This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.21-147-g4746562


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  47465629e707a7e425fd15bf690d65c5da5bd998 (commit)
      from  6d08b0223aa3b3152ea7e9beb2b8f2a151b43109 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=47465629e707a7e425fd15bf690d65c5da5bd998

commit 47465629e707a7e425fd15bf690d65c5da5bd998
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Mar 2 15:44:27 2015 -0800

    Deglobalize internal variables in timer_routines.c.

diff --git a/ChangeLog b/ChangeLog
index 0412b04..d59e1db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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]
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

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                        |    5 +++++
 sysdeps/pthread/timer_routines.c |    6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]