mirror of
https://github.com/fluencelabs/musl
synced 2025-06-30 15:11:55 +00:00
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.
This commit is contained in:
@ -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
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ int semctl(int id, int num, int cmd, ...)
|
||||
arg = va_arg(ap, long);
|
||||
va_end(ap);
|
||||
#ifdef SYS_semctl
|
||||
return syscall(SYS_semctl, id, num, cmd, arg);
|
||||
return syscall(SYS_semctl, id, num, cmd | 0x100, arg);
|
||||
#else
|
||||
return syscall(SYS_ipc, IPCOP_semctl, id, num, cmd | 0x100, &arg);
|
||||
#endif
|
||||
|
@ -5,8 +5,8 @@
|
||||
int shmctl(int id, int cmd, struct shmid_ds *buf)
|
||||
{
|
||||
#ifdef SYS_shmctl
|
||||
return syscall(SYS_shmctl, id, cmd, buf);
|
||||
return syscall(SYS_shmctl, id, cmd | IPC_MODERN, buf);
|
||||
#else
|
||||
return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, buf);
|
||||
return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, 0, buf, 0);
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user