diff options
Diffstat (limited to 'coreutils/timeout.c')
-rw-r--r-- | coreutils/timeout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/timeout.c b/coreutils/timeout.c index 8b7bc2eaa..2a628b71d 100644 --- a/coreutils/timeout.c +++ b/coreutils/timeout.c @@ -105,7 +105,7 @@ int timeout_main(int argc UNUSED_PARAM, char **argv) grandchild: /* Just sleep(HUGE_NUM); kill(parent) may kill wrong process! */ while (1) { - sleep(1); + sleep1(); if (--timeout <= 0) break; if (kill(parent, 0)) { |