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 release/2.24/master updated. glibc-2.24-14-ga7a8929


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, release/2.24/master has been updated
       via  a7a89294919144e58ae59d03f809ca3f8553ee77 (commit)
       via  d289049cf550b975487f94dfbd7af9d5a50b2233 (commit)
       via  537067248021228861ec88bb1feb8922e9818701 (commit)
      from  8c716c2e2f916bc18a3857129c181b96990a87d6 (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=a7a89294919144e58ae59d03f809ca3f8553ee77

commit a7a89294919144e58ae59d03f809ca3f8553ee77
Author: Roland McGrath <roland@hack.frob.com>
Date:   Fri Sep 2 16:58:42 2016 -0700

    NaCl: Fix compile error for __dup after libc_hidden_proto addition.
    
    	* sysdeps/nacl/dup.c: Add libc_hidden_def.
    
    (cherry picked from commit 6b75ba1388bff6a81bad410d7318d385a043b3cb)

diff --git a/ChangeLog b/ChangeLog
index 2738295..1708d50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2016-09-02  Roland McGrath  <roland@hack.frob.com>
 
+	* sysdeps/nacl/dup.c: Add libc_hidden_def.
+
+2016-09-02  Roland McGrath  <roland@hack.frob.com>
+
 	* sysdeps/posix/wait3.c: Don't treat STAT_LOC as a union, since it's
 	not any more.
 
diff --git a/sysdeps/nacl/dup.c b/sysdeps/nacl/dup.c
index 34a7cd4..cbce3f5 100644
--- a/sysdeps/nacl/dup.c
+++ b/sysdeps/nacl/dup.c
@@ -27,4 +27,5 @@ __dup (int fd)
   int result;
   return NACL_CALL (__nacl_irt_fdio.dup (fd, &result), result);
 }
+libc_hidden_def (__dup)
 weak_alias (__dup, dup)

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d289049cf550b975487f94dfbd7af9d5a50b2233

commit d289049cf550b975487f94dfbd7af9d5a50b2233
Author: Roland McGrath <roland@hack.frob.com>
Date:   Fri Sep 2 16:57:59 2016 -0700

    Fix generic wait3 after union wait_status removal.
    
    	* sysdeps/posix/wait3.c: Don't treat STAT_LOC as a union, since it's
    	not any more.
    
    (cherry picked from commit 9a3d16ac152447567bfc822497c564a0630c79fe)

diff --git a/ChangeLog b/ChangeLog
index 0127244..2738295 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2016-09-02  Roland McGrath  <roland@hack.frob.com>
 
+	* sysdeps/posix/wait3.c: Don't treat STAT_LOC as a union, since it's
+	not any more.
+
+2016-09-02  Roland McGrath  <roland@hack.frob.com>
+
 	* sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t
 
 2016-08-17  Florian Weimer  <fweimer@redhat.com>
diff --git a/sysdeps/posix/wait3.c b/sysdeps/posix/wait3.c
index cf43d97..73722d2 100644
--- a/sysdeps/posix/wait3.c
+++ b/sysdeps/posix/wait3.c
@@ -33,7 +33,7 @@ __wait3 (int *stat_loc, int options, struct rusage *usage)
       __set_errno (ENOSYS);
       return (pid_t) -1;
     }
-  return __waitpid (WAIT_ANY, stat_loc.__iptr, options);
+  return __waitpid (WAIT_ANY, stat_loc, options);
 }
 
 weak_alias (__wait3, wait3)

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=537067248021228861ec88bb1feb8922e9818701

commit 537067248021228861ec88bb1feb8922e9818701
Author: Roland McGrath <roland@hack.frob.com>
Date:   Fri Sep 2 16:56:35 2016 -0700

    NaCl: Fix compile error in clock function.
    
    	* sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t
    
    (cherry picked from commit 307c2c2dfff76330a29a3ab69a0177b118142145)

diff --git a/ChangeLog b/ChangeLog
index 3af5852..0127244 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-09-02  Roland McGrath  <roland@hack.frob.com>
+
+	* sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t
+
 2016-08-17  Florian Weimer  <fweimer@redhat.com>
 
 	Reduce time to expected nptl/tst-once5 failure.
diff --git a/sysdeps/nacl/clock.c b/sysdeps/nacl/clock.c
index 664ad65..b6fbcfd 100644
--- a/sysdeps/nacl/clock.c
+++ b/sysdeps/nacl/clock.c
@@ -24,6 +24,6 @@
 clock_t
 clock (void)
 {
-  nacl_abi_clock_t result;
+  nacl_irt_clock_t result;
   return NACL_CALL (__nacl_irt_basic.clock (&result), result);
 }

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

Summary of changes:
 ChangeLog             |   13 +++++++++++++
 sysdeps/nacl/clock.c  |    2 +-
 sysdeps/nacl/dup.c    |    1 +
 sysdeps/posix/wait3.c |    2 +-
 4 files changed, 16 insertions(+), 2 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]