about summary refs log tree commit diff
path: root/src/ipc/semtimedop.c
Commit message (Collapse)AuthorAgeFilesLines
* fix harmless inconsistency in semtimedopRich Felker2013-11-091-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.
* implement semtimedopRich Felker2013-11-091-0/+13
this is a Linux-specific extension to the sysv semaphore api.