We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09022eb commit e97fb72Copy full SHA for e97fb72
abis/linux/sem.h
@@ -12,6 +12,10 @@
12
13
#define SEM_UNDO 0x1000
14
15
+#define SEM_STAT 18
16
+#define SEM_INFO 19
17
+#define SEM_STAT_ANY 20
18
+
19
struct sembuf {
20
unsigned short int sem_num;
21
short int sem_op;
@@ -27,4 +31,17 @@ struct semid_ds {
27
31
unsigned long __unused[2];
28
32
};
29
33
34
+struct seminfo {
35
+ int semmap;
36
+ int semmni;
37
+ int semmns;
38
+ int semmnu;
39
+ int semmsl;
40
+ int semopm;
41
+ int semume;
42
+ int semusz;
43
+ int semvmx;
44
+ int semaem;
45
+};
46
30
47
#endif /* _ABIBITS_SEM_H */
0 commit comments