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()
55 return syscall(SYS_ipc, SHMCTL, id, cmd, 0, buf, 0); in shmctl()
63 return syscall(SYS_ipc, SHMDT, 0, 0, 0, address, 0); in shmdt()
71 return syscall(SYS_ipc, SHMGET, key, size, flags, 0, 0); in shmget()
Dsys_msg.cpp42 return syscall(SYS_ipc, MSGCTL, id, cmd, 0, buf, 0); in msgctl()
50 return syscall(SYS_ipc, MSGGET, key, flags, 0, 0, 0); in msgget()
58 return syscall(SYS_ipc, IPCCALL(1, MSGRCV), id, n, flags, msg, type); in msgrcv()
66 return syscall(SYS_ipc, MSGSND, id, n, flags, msg, 0); in msgsnd()
Dsys_sem.cpp47 return syscall(SYS_ipc, SEMCTL, id, num, cmd, &arg, 0); in semctl()
55 return syscall(SYS_ipc, SEMGET, key, n, flags, 0, 0); in semget()
67 return syscall(SYS_ipc, SEMTIMEDOP, id, op_count, 0, ops, ts); in semtimedop()
/bionic/libc/include/bits/
Dglibc-syscalls.h511 #define SYS_ipc __NR_ipc macro