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.25-388-gca4b396


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  ca4b396ebebf8869e199268edbb5808bb5488c50 (commit)
      from  2714c5f3c95f90977167c1d21326d907fb76b419 (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=ca4b396ebebf8869e199268edbb5808bb5488c50

commit ca4b396ebebf8869e199268edbb5808bb5488c50
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Fri Jun 2 10:58:53 2017 -0300

    posix: Add missing build flags for p{write,read}v2
    
    This patch adds the missing compiler flags for correct pthread cancellation
    on some architectures for the p{read,write}v2 implementation (52bd9381692fd23).
    
    Checked on x86_64-linux-gnu and powerpc64le-linux-gnu.
    
    	* misc/Makefile (CFLAGS-preadv2.c): New rule.
    	(CFLAGS-preadv64v2.c): Likewise.
    	(CFLAGS-pwritev2.c): Likewise.
    	(CFLAGS-pwritev64v2.c): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 6b32e31..2b0a09b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-06-02  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+	* misc/Makefile (CFLAGS-preadv2.c): New rule.
+	(CFLAGS-preadv64v2.c): Likewise.
+	(CFLAGS-pwritev2.c): Likewise.
+	(CFLAGS-pwritev64v2.c): Likewise.
+
 2017-06-02  Florian Weimer  <fweimer@redhat.com>
 
 	Test res_init with several configuration files.
diff --git a/misc/Makefile b/misc/Makefile
index c393fa7..46072e6 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -100,6 +100,10 @@ CFLAGS-preadv.c = -fexceptions -fasynchronous-unwind-tables
 CFLAGS-preadv64.c = -fexceptions -fasynchronous-unwind-tables
 CFLAGS-pwritev.c = -fexceptions -fasynchronous-unwind-tables
 CFLAGS-pwritev64.c = -fexceptions -fasynchronous-unwind-tables
+CFLAGS-preadv2.c = -fexceptions -fasynchronous-unwind-tables
+CFLAGS-preadv64v2.c = -fexceptions -fasynchronous-unwind-tables
+CFLAGS-pwritev2.c = -fexceptions -fasynchronous-unwind-tables
+CFLAGS-pwritev64v2.c = -fexceptions -fasynchronous-unwind-tables
 CFLAGS-usleep.c = -fexceptions
 CFLAGS-syslog.c = -fexceptions
 CFLAGS-error.c = -fexceptions

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

Summary of changes:
 ChangeLog     |    7 +++++++
 misc/Makefile |    4 ++++
 2 files changed, 11 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]