avoid using pthread cleanup push/pop in stdio when not needed
[oweals/musl.git] / src / ipc / shmctl.c
index b2bdfa18bbbd194077c9666f2a3dac8d02428dde..ae6ce69ecd73053f1b1c53ee0b35c73c85addfb0 100644 (file)
@@ -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
 }