summaryrefslogtreecommitdiff
path: root/src/mqueue/struct_mq_attr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mqueue/struct_mq_attr.c')
-rw-r--r--src/mqueue/struct_mq_attr.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mqueue/struct_mq_attr.c b/src/mqueue/struct_mq_attr.c
new file mode 100644
index 00000000..36a58d80
--- /dev/null
+++ b/src/mqueue/struct_mq_attr.c
@@ -0,0 +1,12 @@
+#include <mqueue.h>
+
+struct mq_attr {
+ long mq_flags;
+ long mq_maxmsg;
+ long mq_msgsize;
+ long mq_curmsgs;
+};
+
+/*
+POSIX(199309)
+*/