diff options
-rw-r--r-- | mutex.c | 32 |
1 files changed, 0 insertions, 32 deletions
@@ -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); |