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
|
;;; All you have to do, if a wait on proc was successful
|
||||||
(define (waited-by-wait proc status)
|
(define (waited-by-wait proc status)
|
||||||
(obituary proc status)
|
(if (not (status:stop-sig status))
|
||||||
(mark-proc-waited! proc))
|
(begin
|
||||||
|
(obituary proc status)
|
||||||
|
(mark-proc-waited! proc))))
|
||||||
|
|
||||||
;;; we know from somewhere that proc is dead
|
;;; we know from somewhere that proc is dead
|
||||||
(define (obituary proc status)
|
(define (obituary proc status)
|
||||||
|
|
Loading…
Reference in New Issue