First steps to get conformtest fully working
[platform/upstream/glibc.git] / conform / data / sys / sem.h-data
1 #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined POSIX2008
2 constant SEM_UNDO
3
4 constant GETNCNT
5 constant GETPID
6 constant GETVAL
7 constant GETALL
8 constant GETZCNT
9 constant SETVAL
10 constant SETALL
11
12 type {struct semid_ds}
13
14 element {struct semid_ds} {struct ipc_perm} sem_perm
15 element {struct semid_ds} {unsigned short int} sem_nsems
16 element {struct semid_ds} time_t sem_otime
17 element {struct semid_ds} time_t sem_ctime
18
19 type pid_t
20 type time_t
21 type key_t
22 type size_t
23
24 type {struct sembuf}
25
26 element {struct sembuf} {unsigned short int} sem_num
27 element {struct sembuf} {short int} sem_op
28 element {struct sembuf} {short int} sem_flg
29
30 function int semctl (int, int, int, ...)
31 function int semget (key_t, int, int)
32 function int semop (int, struct sembuf*, size_t)
33
34 allow-header sys/ipc.h
35
36 allow sem*
37 allow SEM_*
38 allow *_t
39 #endif