diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-12-13 11:01:52 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-12-16 01:58:33 +0100 |
commit | 59bb023c8361c0e12e8eee1810897c5e3ea223b3 (patch) | |
tree | 1b0ac0698b6f01aa8c69d0960f9bc1f49ec62f03 /hurd/RPC_gsync_wait_intr.c | |
parent | bec412424e949c900b01767ce32b6743bdaaac93 (diff) | |
download | glibc-59bb023c8361c0e12e8eee1810897c5e3ea223b3.tar.gz glibc-59bb023c8361c0e12e8eee1810897c5e3ea223b3.tar.xz glibc-59bb023c8361c0e12e8eee1810897c5e3ea223b3.zip |
hurd: Add __lll_abstimed_wait_intr
For semaphores, we need an interruptible version of low-level locks.
Diffstat (limited to 'hurd/RPC_gsync_wait_intr.c')
-rw-r--r-- | hurd/RPC_gsync_wait_intr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hurd/RPC_gsync_wait_intr.c b/hurd/RPC_gsync_wait_intr.c new file mode 100644 index 0000000000..51b63217d6 --- /dev/null +++ b/hurd/RPC_gsync_wait_intr.c @@ -0,0 +1,4 @@ +#include "intr-rpc.h" +#define gsync_wait gsync_wait_intr +#define __gsync_wait __gsync_wait_intr +#include "RPC_gsync_wait.c" |