diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-05 16:33:55 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-05 16:33:55 -0400 |
commit | 8bb82b4e58cb4dedb276151c47a799c1e51af230 (patch) | |
tree | e66f3383300fc7be6fa04ce824394c6ff953c84c /src/ipc/msgctl.c | |
parent | 0438e9fd63bedaa43173fc26b567568ecddac55d (diff) | |
download | musl-8bb82b4e58cb4dedb276151c47a799c1e51af230.tar.gz musl-8bb82b4e58cb4dedb276151c47a799c1e51af230.tar.xz musl-8bb82b4e58cb4dedb276151c47a799c1e51af230.zip |
add sysv ipc message queues (completely untested)
Diffstat (limited to 'src/ipc/msgctl.c')
-rw-r--r-- | src/ipc/msgctl.c | 12 |
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 +} |