Home
last modified time | relevance | path

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

/bionic/libc/include/sys/
Dsem.h48 int semop(int, struct sembuf*, size_t) __INTRODUCED_IN(26);
51 int semtimedop(int, struct sembuf*, size_t, const struct timespec*) __INTRODUCED_IN(26);
/bionic/libc/bionic/
Dsys_sem.cpp60 int semop(int id, sembuf* ops, size_t op_count) { in semop()
64 int semtimedop(int id, sembuf* ops, size_t op_count, const timespec* ts) { in semtimedop()
/bionic/libc/kernel/uapi/linux/
Dsem.h49 struct sembuf { struct
/bionic/tests/
Dsys_sem_test.cpp57 sembuf ops[] = {{ .sem_num = 0, .sem_op = 1, .sem_flg = 0 }}; in TEST()