summaryrefslogtreecommitdiff
path: root/src/ipc/msgctl.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-05 16:33:55 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-05 16:33:55 -0400
commit8bb82b4e58cb4dedb276151c47a799c1e51af230 (patch)
treee66f3383300fc7be6fa04ce824394c6ff953c84c /src/ipc/msgctl.c
parent0438e9fd63bedaa43173fc26b567568ecddac55d (diff)
downloadmusl-8bb82b4e58cb4dedb276151c47a799c1e51af230.tar.gz
add sysv ipc message queues (completely untested)
Diffstat (limited to 'src/ipc/msgctl.c')
-rw-r--r--src/ipc/msgctl.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ipc/msgctl.c b/src/ipc/msgctl.c
new file mode 100644
index 00000000..7c84291c
--- /dev/null
+++ b/src/ipc/msgctl.c
@@ -0,0 +1,12 @@
+#include <sys/msg.h>
+#include "syscall.h"
+#include "ipc.h"
+
+int msgctl(int q, int cmd, struct msqid_ds *buf)
+{
+#ifdef __NR_msgctl
+ return syscall(SYS_msgctl, q, cmd, buf);
+#else
+ return syscall(SYS_ipc, IPCOP_msgctl, q, cmd, buf);
+#endif
+}