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-11-g3da5756


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  3da5756ee851c40cb7d4469f4e0ed9ff361977ad (commit)
      from  8ee1abdb4b2c92fb5f189aabec34d1b7d54ac332 (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=3da5756ee851c40cb7d4469f4e0ed9ff361977ad

commit 3da5756ee851c40cb7d4469f4e0ed9ff361977ad
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Wed Aug 2 23:07:58 2017 +0200

    Add missing include for pthread_setcancelstate
    
    * sysdeps/posix/shm_open.c: Include <pthread.h>.

diff --git a/ChangeLog b/ChangeLog
index a8e2c27..05a946d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
 
 	* sysdeps/mach/hurd/enbl-secure.c (__libc_init_secure): Define
 	function.
+	* sysdeps/posix/shm_open.c: Include <pthread.h>.
 
 2017-08-02  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/sysdeps/posix/shm_open.c b/sysdeps/posix/shm_open.c
index 64315de..eeb6cb5 100644
--- a/sysdeps/posix/shm_open.c
+++ b/sysdeps/posix/shm_open.c
@@ -25,6 +25,7 @@
 #else
 
 # include <fcntl.h>
+# include <pthread.h>
 # include <shm-directory.h>
 
 

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

Summary of changes:
 ChangeLog                |    1 +
 sysdeps/posix/shm_open.c |    1 +
 2 files changed, 2 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]