about summary refs log tree commit diff
path: root/nptl/pthread_mutexattr_settype.c
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2013-06-27 11:15:06 -0700
committerAndi Kleen <ak@linux.intel.com>2013-07-02 08:46:55 -0700
commit49186d21ef2d87986bccaf0a7c45c48c91b265f3 (patch)
tree3b30a707c3a8e969e84d7e9ee954153d39299565 /nptl/pthread_mutexattr_settype.c
parente8c659d74e011346785355eeef03b7fb6f533c61 (diff)
downloadglibc-49186d21ef2d87986bccaf0a7c45c48c91b265f3.tar.gz
glibc-49186d21ef2d87986bccaf0a7c45c48c91b265f3.tar.xz
glibc-49186d21ef2d87986bccaf0a7c45c48c91b265f3.zip
Disable elision for any pthread_mutexattr_settype call
PTHREAD_MUTEX_NORMAL requires deadlock for nesting, DEFAULT
does not. Since glibc uses the same value (0) disable elision
for any call to pthread_mutexattr_settype() with a 0 value.
This implies that a program can disable elision by doing
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL)

Based on a original proposal by Rich Felker.
Diffstat (limited to 'nptl/pthread_mutexattr_settype.c')
-rw-r--r--nptl/pthread_mutexattr_settype.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/nptl/pthread_mutexattr_settype.c b/nptl/pthread_mutexattr_settype.c
index 7b476e95bc..a85cdcb389 100644
--- a/nptl/pthread_mutexattr_settype.c
+++ b/nptl/pthread_mutexattr_settype.c
@@ -30,6 +30,11 @@ __pthread_mutexattr_settype (attr, kind)
   if (kind < PTHREAD_MUTEX_NORMAL || kind > PTHREAD_MUTEX_ADAPTIVE_NP)
     return EINVAL;
 
+  /* Cannot distinguish between DEFAULT and NORMAL. So any settype
+     call disables elision for now.  */
+  if (kind == PTHREAD_MUTEX_DEFAULT)
+    kind |= PTHREAD_MUTEX_NO_ELISION_NP;
+
   iattr = (struct pthread_mutexattr *) attr;
 
   iattr->mutexkind = (iattr->mutexkind & PTHREAD_MUTEXATTR_FLAG_BITS) | kind;