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.26-280-g127e777


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  127e7773b437bd5866a4424cc9b338bac6beb08b (commit)
      from  b96aca4d05b2da5d5134b1c3176b16f48db9fe4d (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=127e7773b437bd5866a4424cc9b338bac6beb08b

commit 127e7773b437bd5866a4424cc9b338bac6beb08b
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 3 04:36:29 2017 +0200

    hurd: Fix libc link
    
    	* sysdeps/posix/pause.c: Include <sigsetops.h>.
    	* sysdeps/posix/system.c: Include <sigsetops.h>.

diff --git a/ChangeLog b/ChangeLog
index 11edadd..858848c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,8 @@
 	* sysdeps/posix/pwritev64v2.c: Include <errno.h>.
 	* sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk): New
 	functions.
+	* sysdeps/posix/pause.c: Include <sigsetops.h>.
+	* sysdeps/posix/system.c: Include <sigsetops.h>.
 
 2017-09-01  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/sysdeps/posix/pause.c b/sysdeps/posix/pause.c
index 53e143d..7c17f49 100644
--- a/sysdeps/posix/pause.c
+++ b/sysdeps/posix/pause.c
@@ -19,6 +19,7 @@
 #include <signal.h>
 #include <unistd.h>
 #include <sysdep-cancel.h>
+#include <sigsetops.h>
 
 /* Suspend the process until a signal arrives.
    This always returns -1 and sets errno to EINTR.  */
diff --git a/sysdeps/posix/system.c b/sysdeps/posix/system.c
index d49cc3f..56195b5 100644
--- a/sysdeps/posix/system.c
+++ b/sysdeps/posix/system.c
@@ -24,6 +24,7 @@
 #include <sys/wait.h>
 #include <libc-lock.h>
 #include <sysdep-cancel.h>
+#include <sigsetops.h>
 
 
 #define	SHELL_PATH	"/bin/sh"	/* Path of the shell.  */

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

Summary of changes:
 ChangeLog              |    2 ++
 sysdeps/posix/pause.c  |    1 +
 sysdeps/posix/system.c |    1 +
 3 files changed, 4 insertions(+), 0 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]