Fixed check for stopped child.
This commit is contained in:
parent
314b0deae9
commit
6643c70391
|
@ -32,7 +32,7 @@
|
|||
(define (status:term-sig status)
|
||||
(let ((termsig (bitwise-and status #x7F)))
|
||||
(and (not (zero? termsig)) ; Didn't exit.
|
||||
(not (= #x7F)) ; Not suspended.
|
||||
(not (= termsig #x7F)) ; Not suspended.
|
||||
termsig)))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue