diff options
author | Matthew Krupcale <mkrupcale@matthewkrupcale.com> | 2017-07-06 10:22:20 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-07-06 10:27:24 -0300 |
commit | 3adfef7eaafae8dc00fa12cdecde68c01b7d565a (patch) | |
tree | 1b5357a8866d36bf110feead1b815fa107da268c | |
parent | 031e519c95c069abe4e4c7c59e2b4b67efccdee5 (diff) | |
download | glibc-3adfef7eaafae8dc00fa12cdecde68c01b7d565a.zip glibc-3adfef7eaafae8dc00fa12cdecde68c01b7d565a.tar.gz glibc-3adfef7eaafae8dc00fa12cdecde68c01b7d565a.tar.bz2 |
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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | sysdeps/nptl/bits/pthreadtypes.h | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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 |