Home
last modified time | relevance | path

Searched refs:SYS_ipc (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/bionic/
Dsys_shm.cpp40 if (syscall(SYS_ipc, SHMAT, id, flags, &result, address, 0) == -1) { in shmat()
56 return syscall(SYS_ipc, SHMCTL, id, cmd, 0, buf, 0); in shmctl()
64 return syscall(SYS_ipc, SHMDT, 0, 0, 0, address, 0); in shmdt()
72 return syscall(SYS_ipc, SHMGET, key, size, flags, 0, 0); in shmget()
Dsys_msg.cpp43 return syscall(SYS_ipc, MSGCTL, id, cmd, 0, buf, 0); in msgctl()
51 return syscall(SYS_ipc, MSGGET, key, flags, 0, 0, 0); in msgget()
59 return syscall(SYS_ipc, IPCCALL(1, MSGRCV), id, n, flags, msg, type); in msgrcv()
67 return syscall(SYS_ipc, MSGSND, id, n, flags, msg, 0); in msgsnd()
Dsys_sem.cpp48 return syscall(SYS_ipc, SEMCTL, id, num, cmd, &arg, 0); in semctl()
56 return syscall(SYS_ipc, SEMGET, key, n, flags, 0, 0); in semget()
68 return syscall(SYS_ipc, SEMTIMEDOP, id, op_count, 0, ops, ts); in semtimedop()
/bionic/libc/include/bits/
Dglibc-syscalls.h434 #define SYS_ipc __NR_ipc macro