summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);