diff --git a/libs/pbd/system_exec.cc b/libs/pbd/system_exec.cc index c6d2da31d3..7e94880f85 100644 --- a/libs/pbd/system_exec.cc +++ b/libs/pbd/system_exec.cc @@ -627,7 +627,7 @@ SystemExec::terminate () close_stdin(); if (pid) { - ::usleep(50000); + ::usleep(200000); sched_yield(); wait(WNOHANG); } @@ -638,7 +638,7 @@ SystemExec::terminate () if (pid) { ::kill(pid, SIGTERM); - usleep(50000); + ::usleep(250000); sched_yield(); wait(WNOHANG); }