Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dsys_sem.cpp60 int semop(int id, sembuf* ops, size_t op_count) { in semop() argument
61 return semtimedop(id, ops, op_count, nullptr); in semop()
64 int semtimedop(int id, sembuf* ops, size_t op_count, const timespec* ts) { in semtimedop() argument
66 return syscall(SYS_semtimedop, id, ops, op_count, ts); in semtimedop()
68 return syscall(SYS_ipc, SEMTIMEDOP, id, op_count, 0, ops, ts); in semtimedop()