1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 15:57:13 +00:00

Reduce excessive sleep after waiting for a process to exit (1s -> 10us)

This commit is contained in:
Nick Briggs 2020-07-08 18:40:53 -07:00
parent 2563b05dc1
commit ae5eea1a29

View File

@ -701,7 +701,7 @@ LispPTR Unix_handlecomm(LispPTR *args) {
debugged. So we time it out just be safe. */
if (UJ[slot].status != -1) break;
wait_for_comm_processes();
sleep(1);
usleep(10);
}
}
break;