#define _SYSTEM 1 #include #include #include "namespace.h" #include #include #include #include #include #include #include #include static int get_ipc_endpt(endpoint_t *pt) { return minix_rs_lookup("ipc", pt); } /* Shared memory control operation. */ int shmctl(int shmid, int cmd, struct shmid_ds *buf) { message m; endpoint_t ipc_pt; int r; if (get_ipc_endpt(&ipc_pt) != OK) { errno = ENOSYS; return -1; } memset(&m, 0, sizeof(m)); m.SHMCTL_ID = shmid; m.SHMCTL_CMD = cmd; m.SHMCTL_BUF = (long) buf; r = _syscall(ipc_pt, IPC_SHMCTL, &m); if ((cmd == IPC_INFO || cmd == SHM_INFO || cmd == SHM_STAT) && (r == OK)) return m.SHMCTL_RET; return r; } #if defined(__minix) && defined(__weak_alias) __weak_alias(shmctl, __shmctl50) #endif