From 07e865cc5afb11e6e882e998306ab0f7fb64357e Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 13 Apr 2011 16:45:43 -0400 Subject: numerous fixes to sysv ipc some of these definitions were just plain wrong, others based on outdated ancient "non-64" versions of the kernel interface. as much as possible has now been moved out of bits/* these changes break abi (the old abi for these functions was wrong), but since they were not working anyway it can hardly matter. --- src/ipc/msgctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ipc/msgctl.c') diff --git a/src/ipc/msgctl.c b/src/ipc/msgctl.c index d50e395b..d1ff7c70 100644 --- a/src/ipc/msgctl.c +++ b/src/ipc/msgctl.c @@ -5,8 +5,8 @@ int msgctl(int q, int cmd, struct msqid_ds *buf) { #ifdef SYS_msgctl - return syscall(SYS_msgctl, q, cmd, buf); + return syscall(SYS_msgctl, q, cmd | 0x100, buf); #else - return syscall(SYS_ipc, IPCOP_msgctl, q, cmd, buf); + return syscall(SYS_ipc, IPCOP_msgctl, q, cmd | 0x100, 0, buf, 0); #endif } -- cgit v1.2.1