From 0dd870caa461a8d91f7ec2365e1d542bc0615fb8 Mon Sep 17 00:00:00 2001 From: bje Date: Sat, 25 Jul 1998 22:45:17 +0000 Subject: 1998-07-26 Ben Elliston * mutex.c (pthread_mutexattr_setpshared): Not supported; remove. (pthread_mutexattr_getpshared): Likewise. * pthread.h (pthread_mutexattr_setpshared): Remove prototype. (pthread_mutexattr_getpshared): Likewise. --- mutex.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'mutex.c') diff --git a/mutex.c b/mutex.c index 35d482c..e779729 100644 --- a/mutex.c +++ b/mutex.c @@ -54,21 +54,6 @@ pthread_mutexattr_destroy(pthread_mutexattr_t *attr) return 0; } -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) { -- cgit v1.2.3