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.9000-612-g6d43de4


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  6d43de4b85b11d26a19bebe4f55f31be16e3d419 (commit)
      from  a15d53e2de4c7d83bda251469d92a3c7b49a90db (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=6d43de4b85b11d26a19bebe4f55f31be16e3d419

commit 6d43de4b85b11d26a19bebe4f55f31be16e3d419
Author: Wilco Dijkstra <wdijkstr@arm.com>
Date:   Fri Oct 20 17:39:47 2017 +0100

    Fix build issue with SINGLE_THREAD_P
    
    Add sysdep-cancel.h include.
    
    	* malloc/malloc.c (sysdep-cancel.h): Add include.

diff --git a/ChangeLog b/ChangeLog
index 0eb9bae..f0512c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2017-10-20  Wilco Dijkstra  <wdijkstr@arm.com>
 
+	* malloc/malloc.c (sysdep-cancel.h): Add include.
+
+2017-10-20  Wilco Dijkstra  <wdijkstr@arm.com>
+
 	* malloc/malloc.c (_int_free): Add SINGLE_THREAD_P fast paths.
 
 2017-10-20  Will Hawkins  <hawkinsw@borlaugic.com>
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 4db21cc..32b6e96 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -243,6 +243,9 @@
 
 #include <malloc/malloc-internal.h>
 
+/* For SINGLE_THREAD_P.  */
+#include <sysdep-cancel.h>
+
 /*
   Debugging:
 

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

Summary of changes:
 ChangeLog       |    4 ++++
 malloc/malloc.c |    3 +++
 2 files changed, 7 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]