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.24-119-g6b75ba1


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  6b75ba1388bff6a81bad410d7318d385a043b3cb (commit)
       via  9a3d16ac152447567bfc822497c564a0630c79fe (commit)
       via  307c2c2dfff76330a29a3ab69a0177b118142145 (commit)
      from  54c86ccab686605ce05198f10cae925ae486b623 (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=6b75ba1388bff6a81bad410d7318d385a043b3cb

commit 6b75ba1388bff6a81bad410d7318d385a043b3cb
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.

diff --git a/ChangeLog b/ChangeLog
index 254fcfb..07cc502 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2016-09-02  Roland McGrath  <roland@hack.frob.com>
 
+	* sysdeps/nacl/dup.c: Add libc_hidden_def.
+
 	* 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=9a3d16ac152447567bfc822497c564a0630c79fe

commit 9a3d16ac152447567bfc822497c564a0630c79fe
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.

diff --git a/ChangeLog b/ChangeLog
index 3e70b4c..254fcfb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 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.
+
 	* sysdeps/nacl/clock.c (clock): nacl_abi_clock_t -> nacl_irt_clock_t
 
 2016-09-02  Siddhesh Poyarekar  <siddhesh@sourceware.org>
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=307c2c2dfff76330a29a3ab69a0177b118142145

commit 307c2c2dfff76330a29a3ab69a0177b118142145
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

diff --git a/ChangeLog b/ChangeLog
index f95b22f..3e70b4c 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-09-02  Siddhesh Poyarekar  <siddhesh@sourceware.org>
 
 	* sysdeps/ieee754/dbl-64/s_sin.c (do_cos): Mark as inline.
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             |    9 +++++++++
 sysdeps/nacl/clock.c  |    2 +-
 sysdeps/nacl/dup.c    |    1 +
 sysdeps/posix/wait3.c |    2 +-
 4 files changed, 12 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]