diff --git a/seize.c b/seize.c index 082e6b5612..75a53b13b7 100644 --- a/seize.c +++ b/seize.c @@ -223,7 +223,7 @@ static int freeze_processes(void) continue; } - timeout = 10000000 * i; + timeout = 100000000 * (i + 1); /* 100 msec */ req.tv_nsec = timeout % 1000000000; req.tv_sec = timeout / 1000000000; nanosleep(&req, NULL);