Searched refs:sops (Results 1 – 2 of 2) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/sysvipc/ |
A D | sem.c | 80 _syscall3(int, semop, int, semid, struct sembuf *, sops, size_t, nsops) 84 int semop (int semid, struct sembuf *sops, size_t nsops) 86 return __syscall_ipc(IPCOP_semop, semid, (int) nsops, 0, sops, NULL); 94 _syscall4(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec … 98 int semtimedop(int semid, struct sembuf *sops, size_t nsops, 101 return __syscall_ipc(IPCOP_semtimedop, semid, nsops, 0, sops, (void *) timeout);
|
/l4re-core-master/libc_backends/lib/sem_noop/ |
A D | sem_noop.c | 45 int semop(int semid, struct sembuf *sops, size_t nsops) in semop() argument 47 printf("%s(%d, %p, %zd)\n", __func__, semid, sops, nsops); in semop()
|
Completed in 2 milliseconds