We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1b55f7 commit 09022ebCopy full SHA for 09022eb
options/posix/include/sys/msg.h
@@ -1,6 +1,8 @@
1
#ifndef _SYS_MSG_H
2
#define _SYS_MSG_H
3
4
+#include <mlibc-config.h>
5
+
6
#include <abi-bits/msg.h>
7
#include <bits/size_t.h>
8
#include <bits/ssize_t.h>
@@ -9,6 +11,19 @@
9
11
extern "C" {
10
12
#endif
13
14
+#if defined(_DEFAULT_SOURCE)
15
+struct msginfo {
16
+ int msgpool;
17
+ int msgmap;
18
+ int msgmax;
19
+ int msgmnb;
20
+ int msgmni;
21
+ int msgssz;
22
+ int msgtql;
23
+ unsigned short int msgseg;
24
+};
25
+#endif /* defined(_DEFAULT_SOURCE) */
26
27
#ifndef __MLIBC_ABI_ONLY
28
29
int msgget(key_t __key, int __msgflg);
0 commit comments