1
1

torture: Increase wait time for process termination to 10ms

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Andreas Schneider 2018-05-07 21:00:16 +02:00
родитель ed4ea51bb8
Коммит f1ff9ae00c

Просмотреть файл

@ -219,7 +219,7 @@ int torture_terminate_process(const char *pidfile)
/* Make sure the daemon goes away! */
kill(pid, SIGTERM);
usleep(5000);
usleep(10000);
rc = kill(pid, 0);
if (rc != 0) {