summaryrefslogtreecommitdiff
path: root/src/ipc/semtimedop.c
AgeCommit message (Collapse)AuthorLines
2013-11-09fix harmless inconsistency in semtimedopRich Felker-1/+1
this should not matter since the reality is that either all the sysv sem syscalls are individual syscalls, or all of them are multiplexed on the SYS_ipc syscall (depending on arch). but best to be consistent anyway.
2013-11-09implement semtimedopRich Felker-0/+13
this is a Linux-specific extension to the sysv semaphore api.