Don't mark stopped processes as dead
This commit is contained in:
parent
03d11e2576
commit
89db21acf6
|
@ -345,8 +345,10 @@
|
|||
|
||||
;;; All you have to do, if a wait on proc was successful
|
||||
(define (waited-by-wait proc status)
|
||||
(obituary proc status)
|
||||
(mark-proc-waited! proc))
|
||||
(if (not (status:stop-sig status))
|
||||
(begin
|
||||
(obituary proc status)
|
||||
(mark-proc-waited! proc))))
|
||||
|
||||
;;; we know from somewhere that proc is dead
|
||||
(define (obituary proc status)
|
||||
|
|
Loading…
Reference in New Issue