From d0c8ee6a9ee8d7faef6cf9353c1244b9906cd743 Mon Sep 17 00:00:00 2001 From: bje Date: Thu, 23 Jul 1998 14:22:01 +0000 Subject: 1998-07-24 Ben Elliston * mutex.c (pthread_mutexattr_setprotocol): Remove; not supported. (pthread_mutexattr_getprotocol): Likewise. (pthread_mutexattr_setprioceiling): Likewise. (pthread_mutexattr_getprioceiling): Likewise. --- mutex.c | 32 -------------------------------- 1 file changed, 32 deletions(-) (limited to 'mutex.c') diff --git a/mutex.c b/mutex.c index 7633f91..35d482c 100644 --- a/mutex.c +++ b/mutex.c @@ -69,38 +69,6 @@ pthread_mutexattr_getpshared(const pthread_mutexattr_t *attr, return ENOSYS; } -int -pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr, - int protocol) -{ - /* This function is not supported. */ - return ENOSYS; -} - -int -pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr, - int *protocol) -{ - /* This function is not supported. */ - return ENOSYS; -} - -int -pthread_mutexattr_setprioceiling(pthread_mutexattr_t *attr, - int ceiling) -{ - /* This function is not supported. */ - return ENOSYS; -} - -int -pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *attr, - int *ceiling) -{ - /* This function is not supported. */ - return ENOSYS; -} - int pthread_mutex_lock(pthread_mutex_t *mutex) { -- cgit v1.2.3