blob: b9739b9034de73521d90f0ff2d8ae415d7f05244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* mutex.c
*
* Description:
* This translation unit implements mutual exclusion (mutex) primitives.
*/
#include "pthread.h"
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;
}
|