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-686-g3adfef7


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  3adfef7eaafae8dc00fa12cdecde68c01b7d565a (commit)
      from  031e519c95c069abe4e4c7c59e2b4b67efccdee5 (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=3adfef7eaafae8dc00fa12cdecde68c01b7d565a

commit 3adfef7eaafae8dc00fa12cdecde68c01b7d565a
Author: Matthew Krupcale <mkrupcale@matthewkrupcale.com>
Date:   Thu Jul 6 10:22:20 2017 -0300

    nptl: Fix typo on __have_pthread_attr_t (BZ#21715)
    
    This patch fixes some build issues when including types/sigevent_t.h
    along with bits/pthreadtypes.h.
    
    Checked on x86_64-linux-gnu and on a build on supported major ABIs.
    
    	[BZ #21715]
    	* sysdeps/nptl/bits/pthreadtypes.h (__have_pthread_attr_t): Fix typo
    	on definition.

diff --git a/ChangeLog b/ChangeLog
index 70e0a25..04a2647 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-07-06  Matthew Krupcale  <mkrupcale@matthewkrupcale.com>
+
+	[BZ #21715]
+	* sysdeps/nptl/bits/pthreadtypes.h (__have_pthread_attr_t): Fix typo
+	on definition.
+
 2017-07-06  Florian Weimer  <fweimer@redhat.com>
 	    H.J. Lu  <hongjiu.lu@intel.com>
 
diff --git a/sysdeps/nptl/bits/pthreadtypes.h b/sysdeps/nptl/bits/pthreadtypes.h
index 8839559..0941e9e 100644
--- a/sysdeps/nptl/bits/pthreadtypes.h
+++ b/sysdeps/nptl/bits/pthreadtypes.h
@@ -60,7 +60,7 @@ union pthread_attr_t
 };
 #ifndef __have_pthread_attr_t
 typedef union pthread_attr_t pthread_attr_t;
-# define __have_pthread_attr_t1
+# define __have_pthread_attr_t 1
 #endif
 
 

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

Summary of changes:
 ChangeLog                        |    6 ++++++
 sysdeps/nptl/bits/pthreadtypes.h |    2 +-
 2 files changed, 7 insertions(+), 1 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]