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.14-47-gc2344f5


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  c2344f56e41b56036d6a16a30b9f32c19aa932d6 (commit)
       via  68468076c221dc595e955d2c7982a3391ee0772a (commit)
      from  acb0d739c5801d3a27122d6aafdd282327c3996f (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=c2344f56e41b56036d6a16a30b9f32c19aa932d6

commit c2344f56e41b56036d6a16a30b9f32c19aa932d6
Author: H.J. Lu <hongjiu.lu@intel.com>
Date:   Sun Jun 26 03:08:01 2011 -0400

    Use __gettimeofday instead of gettimeofday

diff --git a/ChangeLog b/ChangeLog
index 0745a7d..7ba4fd5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-06-23  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
+	__gettimeofday instead of gettimeofday.
+
 2011-06-26  Ulrich Drepper  <drepper@gmail.com>
 
 	* elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
diff --git a/sysdeps/unix/sysv/linux/getsysstats.c b/sysdeps/unix/sysv/linux/getsysstats.c
index b74774f..b9bae3d 100644
--- a/sysdeps/unix/sysv/linux/getsysstats.c
+++ b/sysdeps/unix/sysv/linux/getsysstats.c
@@ -147,7 +147,7 @@ __get_nprocs ()
   INTERNAL_VSYSCALL (clock_gettime, err, 2, CLOCK_REALTIME, &ts);
 #else
   struct timeval ts;
-  gettimeofday (&ts, NULL);
+  __gettimeofday (&ts, NULL);
 #endif
   time_t prev = timestamp;
   atomic_read_barrier ();

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=68468076c221dc595e955d2c7982a3391ee0772a

commit 68468076c221dc595e955d2c7982a3391ee0772a
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Sun Jun 26 03:04:07 2011 -0400

    We don't use linkobj/libc.so at runtmie, no need to check for text rels
    
    This also works around a toolchain issu.

diff --git a/ChangeLog b/ChangeLog
index 390928f..0745a7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-26  Ulrich Drepper  <drepper@gmail.com>
+
+	* elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
+
 2011-06-24  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
diff --git a/elf/Makefile b/elf/Makefile
index 5c05738..fbd7d88 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -973,8 +973,9 @@ ifeq (yes,$(build-shared))
 tests: $(objpfx)check-textrel.out $(objpfx)check-execstack.out
 
 all-built-dso = $(common-objpfx)libc.so \
-		$(sort $(wildcard $(common-objpfx)*/lib*.so \
-				  $(common-objpfx)iconvdata/*.so))
+		$(filter-out $(common-objpfx)linkobj/libc.so, \
+			     $(sort $(wildcard $(common-objpfx)*/lib*.so \
+					       $(common-objpfx)iconvdata/*.so)))
 
 $(objpfx)check-textrel.out: $(objpfx)check-textrel $(all-built-dso)
 	$(dir $<)$(notdir $<) $(filter-out $<, $^) > $@

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

Summary of changes:
 ChangeLog                             |    9 +++++++++
 elf/Makefile                          |    5 +++--
 sysdeps/unix/sysv/linux/getsysstats.c |    2 +-
 3 files changed, 13 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]