summaryrefslogtreecommitdiff
path: root/mutex.c
diff options
context:
space:
mode:
authorbje <bje>1998-07-23 14:22:01 +0000
committerbje <bje>1998-07-23 14:22:01 +0000
commitd0c8ee6a9ee8d7faef6cf9353c1244b9906cd743 (patch)
tree56a5480316e4edddfeef023dab33ca1aaaad2517 /mutex.c
parentec424d6656acd54af051c2a73dce348671135b35 (diff)
1998-07-24 Ben Elliston <bje@cygnus.com>
* mutex.c (pthread_mutexattr_setprotocol): Remove; not supported. (pthread_mutexattr_getprotocol): Likewise. (pthread_mutexattr_setprioceiling): Likewise. (pthread_mutexattr_getprioceiling): Likewise.
Diffstat (limited to 'mutex.c')
-rw-r--r--mutex.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/mutex.c b/mutex.c
index 7633f91..35d482c 100644
--- a/mutex.c
+++ b/mutex.c
@@ -70,38 +70,6 @@ pthread_mutexattr_getpshared(const pthread_mutexattr_t *attr,
}
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)
{
EnterCriticalSection(mutex);