diff options
author | Andreas Schwab <schwab@suse.de> | 2016-01-13 16:04:42 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2016-01-25 16:26:07 +0100 |
commit | 5aded6f2abbe19bc77e563b7db10aa9dd037a90d (patch) | |
tree | c0ef8f09db876a88ea8c29e29c6655d1c50f4f7d /nptl/Makefile | |
parent | 9200e581e500b6c8ad52733f9c0ac3efc8d4b4b9 (diff) | |
download | glibc-5aded6f2abbe19bc77e563b7db10aa9dd037a90d.tar.gz glibc-5aded6f2abbe19bc77e563b7db10aa9dd037a90d.tar.xz glibc-5aded6f2abbe19bc77e563b7db10aa9dd037a90d.zip |
Don't do lock elision on an error checking mutex (bug 17514)
Error checking mutexes are not supposed to be subject to lock elision. That would defeat the error checking nature of the mutex because lock elision doesn't record ownership.
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 6d3d71170b..dc3ccab991 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -288,7 +288,7 @@ tests = tst-typesizes \ tst-initializers1 $(addprefix tst-initializers1-,\ c89 gnu89 c99 gnu99 c11 gnu11) \ tst-bad-schedattr \ - tst-thread_local1 + tst-thread_local1 tst-mutex-errorcheck xtests = tst-setuid1 tst-setuid1-static tst-setuid2 \ tst-mutexpp1 tst-mutexpp6 tst-mutexpp10 test-srcs = tst-oddstacklimit |