aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/timeout.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/coreutils/timeout.c b/coreutils/timeout.c
index 18aa9ebeb..84299a0a5 100644
--- a/coreutils/timeout.c
+++ b/coreutils/timeout.c
@@ -47,11 +47,16 @@
47 47
48#include "libbb.h" 48#include "libbb.h"
49 49
50static NOINLINE int timeout_wait(int timeout, pid_t pid) 50static NOINLINE int timeout_wait(duration_t timeout, pid_t pid)
51{ 51{
52 /* Just sleep(HUGE_NUM); kill(parent) may kill wrong process! */ 52 /* Just sleep(HUGE_NUM); kill(parent) may kill wrong process! */
53 while (1) { 53 while (1) {
54 sleep1(); 54#if ENABLE_FLOAT_DURATION
55 if (timeout < 1)
56 sleep_for_duration(timeout);
57 else
58#endif
59 sleep1();
55 if (--timeout <= 0) 60 if (--timeout <= 0)
56 break; 61 break;
57 if (kill(pid, 0)) { 62 if (kill(pid, 0)) {
@@ -68,8 +73,8 @@ int timeout_main(int argc UNUSED_PARAM, char **argv)
68 int signo; 73 int signo;
69 int status; 74 int status;
70 int parent = 0; 75 int parent = 0;
71 int timeout; 76 duration_t timeout;
72 int kill_timeout; 77 duration_t kill_timeout;
73 pid_t pid; 78 pid_t pid;
74#if !BB_MMU 79#if !BB_MMU
75 char *sv1, *sv2; 80 char *sv1, *sv2;