summaryrefslogtreecommitdiff
path: root/mutex.c
diff options
context:
space:
mode:
authorbje <bje>1998-07-25 22:45:17 +0000
committerbje <bje>1998-07-25 22:45:17 +0000
commit0dd870caa461a8d91f7ec2365e1d542bc0615fb8 (patch)
treebee790e3f8a903c02ac6801759aec21b5828dde0 /mutex.c
parentd2298ecbc9910e9186dad3eeb7fa8eed7bca9a80 (diff)
1998-07-26 Ben Elliston <bje@cygnus.com>
* mutex.c (pthread_mutexattr_setpshared): Not supported; remove. (pthread_mutexattr_getpshared): Likewise. * pthread.h (pthread_mutexattr_setpshared): Remove prototype. (pthread_mutexattr_getpshared): Likewise.
Diffstat (limited to 'mutex.c')
-rw-r--r--mutex.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/mutex.c b/mutex.c
index 35d482c..e779729 100644
--- a/mutex.c
+++ b/mutex.c
@@ -55,21 +55,6 @@ pthread_mutexattr_destroy(pthread_mutexattr_t *attr)
}
int
-pthread_mutexattr_setpshared(pthread_mutexattr_t *attr, int process_shared)
-{
- /* This function is not supported. */
- return ENOSYS;
-}
-
-int
-pthread_mutexattr_getpshared(const pthread_mutexattr_t *attr,
- int *process_shared)
-{
- /* This function is not supported. */
- return ENOSYS;
-}
-
-int
pthread_mutex_lock(pthread_mutex_t *mutex)
{
EnterCriticalSection(mutex);