refactor thrd_sleep and nanosleep in terms of clock_nanosleep
authorRich Felker <dalias@aerifal.cx>
Sun, 21 Jul 2019 05:53:14 +0000 (01:53 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 27 Jul 2019 06:46:57 +0000 (02:46 -0400)
commit331993e3fc3623f111d95796d3d7f30b4f6552c1
treee17e0f0717b1f2ac3e49491d171934e5056566b7
parent0ce49d0a301b4142741b32773492af90f66ed3ca
refactor thrd_sleep and nanosleep in terms of clock_nanosleep

for namespace-safety with thrd_sleep, this requires an alias, which is
also added. this eliminates all but one direct call point for
nanosleep syscalls, and arranges that 64-bit time_t conversion logic
will only need to exist in one file rather than three.

as a bonus, clock_nanosleep with CLOCK_REALTIME and empty flags is now
implemented as SYS_nanosleep, thereby working on older kernels that
may lack POSIX clocks functionality.
src/include/time.h
src/thread/thrd_sleep.c
src/time/clock_nanosleep.c
src/time/nanosleep.c