summaryrefslogtreecommitdiffstats
path: root/libc/include
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2010-03-11 14:47:47 -0800
committerFabrice Di Meglio <fdimeglio@google.com>2010-03-11 14:47:47 -0800
commit8641833b62e3b319796dc80ea16eb1592c05edf6 (patch)
treef0b9b778513da0e049ce1b4c706ae5000848d7c1 /libc/include
parentba9c6f0989ae94778ba2b9f597adc827c9dc81e8 (diff)
downloadbionic-8641833b62e3b319796dc80ea16eb1592c05edf6.zip
bionic-8641833b62e3b319796dc80ea16eb1592c05edf6.tar.gz
bionic-8641833b62e3b319796dc80ea16eb1592c05edf6.tar.bz2
Revert "bionic: pthread: use private futexes by default for mutexes and condvars"
This reverts commit ba9c6f0989ae94778ba2b9f597adc827c9dc81e8.
Diffstat (limited to 'libc/include')
-rw-r--r--libc/include/pthread.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/include/pthread.h b/libc/include/pthread.h
index 5c0a349..6603b3f 100644
--- a/libc/include/pthread.h
+++ b/libc/include/pthread.h
@@ -165,11 +165,6 @@ int pthread_mutex_unlock(pthread_mutex_t *mutex);
int pthread_mutex_trylock(pthread_mutex_t *mutex);
int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts);
-int pthread_condattr_init(pthread_condattr_t *attr);
-int pthread_condattr_setpshared(pthread_condattr_t *attr, int pshared);
-int pthread_condattr_getpshared(pthread_condattr_t *attr, int *pshared);
-int pthread_condattr_destroy(pthread_condattr_t *attr);
-
int pthread_cond_init(pthread_cond_t *cond,
const pthread_condattr_t *attr);
int pthread_cond_destroy(pthread_cond_t *cond);