Fixed check for stopped child.

This commit is contained in:
mainzelm 2001-12-17 15:39:22 +00:00
parent 314b0deae9
commit 6643c70391
1 changed files with 1 additions and 1 deletions

View File

@ -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)))