summaryrefslogtreecommitdiffstats
path: root/libc/misc/sysvipc/msgq.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-30 02:54:42 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-30 02:54:42 +0000
commit92ac94812b84cef7d9bddfffd0446721a7a6ee06 (patch)
treea5a2c895d613afb96fb71c9c19be9ec266db30d7 /libc/misc/sysvipc/msgq.c
parentac02770c4a13eff9fef10c33ebb18d765f25a968 (diff)
downloaduClibc-alpine-92ac94812b84cef7d9bddfffd0446721a7a6ee06.tar.bz2
uClibc-alpine-92ac94812b84cef7d9bddfffd0446721a7a6ee06.tar.xz
Finalize the merge from the trunk. There are more files to be
merged, but they will be done manually.
Diffstat (limited to 'libc/misc/sysvipc/msgq.c')
-rw-r--r--libc/misc/sysvipc/msgq.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/libc/misc/sysvipc/msgq.c b/libc/misc/sysvipc/msgq.c
index 411ea3ea4..758dbaa47 100644
--- a/libc/misc/sysvipc/msgq.c
+++ b/libc/misc/sysvipc/msgq.c
@@ -6,14 +6,18 @@
#ifdef L_msgctl
#ifdef __NR_msgctl
-_syscall3(int, msgctl, int, msqid, int, cmd | __IPC_64, struct msqid_ds *, buf);
-#else
+#define __NR___libc_msgctl __NR_msgctl
+_syscall3(int, __libc_msgctl, int, msqid, int, cmd, struct msqid_ds *, buf);
+#endif
/* Message queue control operation. */
-int msgctl (int msqid, int cmd, struct msqid_ds *buf)
+int msgctl(int msqid, int cmd, struct msqid_ds *buf)
{
- return __syscall_ipc(IPCOP_msgctl ,msqid ,cmd | __IPC_64 ,0 ,buf);
-}
+#ifdef __NR_msgctl
+ return __libc_msgctl(msqid, cmd | __IPC_64, buf);
+#else
+ return __syscall_ipc(IPCOP_msgctl, msqid, cmd | __IPC_64, 0, buf);
#endif
+}
#endif