]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/ipc/semtimedop.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / ipc / semtimedop.c
1 #define _GNU_SOURCE
2 #include <sys/sem.h>
3 #include "syscall.h"
4 #include "ipc.h"
5
6 int semtimedop(int id, struct sembuf *buf, size_t n, const struct timespec *ts)
7 {
8 #ifdef SYS_semtimedop
9 return syscall(SYS_semtimedop, id, buf, n, ts);
10 #else
11 return syscall(SYS_ipc, IPCOP_semtimedop, id, n, 0, buf, ts);
12 #endif
13 }