]>
git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/ipc/semtimedop.c
51e70805314f196238ce29e979f0061df2287d04
6 int semtimedop(int id
, struct sembuf
*buf
, size_t n
, const struct timespec
*ts
)
9 return syscall(SYS_semtimedop
, id
, buf
, n
, ts
);
11 return syscall(SYS_ipc
, IPCOP_semtimedop
, id
, n
, 0, buf
, ts
);