diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-01-22 19:09:49 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-11 05:08:47 -0500 |
commit | e319570ec141e0f63d82d23b88a40f96fc0b7105 (patch) | |
tree | f74ccb5c51ba9a1489d89e6ae6355c2033cbc6e1 /rts/RtsUtils.c | |
parent | de32beffde82eec954691703541a2d4081799453 (diff) | |
download | haskell-e319570ec141e0f63d82d23b88a40f96fc0b7105.tar.gz |
rts: Use nanosleep instead of usleep
usleep was removed in POSIX.1-2008.
Diffstat (limited to 'rts/RtsUtils.c')
-rw-r--r-- | rts/RtsUtils.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index b9ddb2a345..3b55a7d03f 100644 --- a/rts/RtsUtils.c +++ b/rts/RtsUtils.c @@ -153,6 +153,24 @@ reportHeapOverflow(void) } /* ----------------------------------------------------------------------------- + Sleep for the given period of time. + -------------------------------------------------------------------------- */ + +/* Returns -1 on failure but handles EINTR internally. + * N.B. usleep has been removed from POSIX 2008 */ +int rtsSleep(Time t) +{ + struct timespec req; + req.tv_sec = TimeToSeconds(t); + req.tv_nsec = TimeToNS(t - req.tv_sec * TIME_RESOLUTION); + int ret; + do { + ret = nanosleep(&req, &req); + } while (ret == -1 && errno == EINTR); + return ret; +} + +/* ----------------------------------------------------------------------------- Get the current time as a string. Used in profiling reports. -------------------------------------------------------------------------- */ |