diff options
author | Andreas Schwab <schwab@suse.de> | 2014-08-11 11:18:26 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2015-02-12 09:26:00 +0100 |
commit | 2868e0703d5b8c8e60c6f60de13e876c4d85daa0 (patch) | |
tree | c95b13872206f54b6b8b490619a57454eeeb0ed5 /nptl/Makefile | |
parent | ebf27d12e602b428a316c105ed10371ed84d2d3d (diff) | |
download | glibc-2868e0703d5b8c8e60c6f60de13e876c4d85daa0.tar.gz glibc-2868e0703d5b8c8e60c6f60de13e876c4d85daa0.tar.xz glibc-2868e0703d5b8c8e60c6f60de13e876c4d85daa0.zip |
Filter out PTHREAD_MUTEX_NO_ELISION_NP bit in pthread_mutexattr_gettype (BZ #15790)
pthread_mutexattr_settype adds PTHREAD_MUTEX_NO_ELISION_NP to kind, which is an internal flag that pthread_mutexattr_gettype shouldn't expose, since pthread_mutexattr_settype wouldn't accept it.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 6ae76bb8d1..89fdc8b9b4 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -256,7 +256,7 @@ tests = tst-typesizes \ tst-exit1 tst-exit2 tst-exit3 \ tst-stdio1 tst-stdio2 \ tst-stack1 tst-stack2 tst-stack3 tst-stack4 tst-pthread-getattr \ - tst-pthread-attr-affinity \ + tst-pthread-attr-affinity tst-pthread-mutexattr \ tst-unload \ tst-dlsym1 \ tst-sysconf \ |