removed debugging output
This commit is contained in:
parent
ba7000ce43
commit
145ddac9cb
|
@ -207,15 +207,13 @@
|
||||||
;;; Return true if no more outstanding children; #f if some still live.
|
;;; Return true if no more outstanding children; #f if some still live.
|
||||||
|
|
||||||
(define (reap-zombies)
|
(define (reap-zombies)
|
||||||
(display "reap-zombies was called" (current-error-port))
|
|
||||||
(newline)
|
|
||||||
(let lp ()
|
(let lp ()
|
||||||
(receive (pid status) (%wait-any (bitwise-ior wait/poll
|
(receive (pid status) (%wait-any (bitwise-ior wait/poll
|
||||||
wait/stopped-children))
|
wait/stopped-children))
|
||||||
(if pid
|
(if pid
|
||||||
(begin (waited-by-reap pid status)
|
(begin (waited-by-reap pid status)
|
||||||
(format (current-error-port)
|
; (format (current-error-port)
|
||||||
"Reaping ~d[~d]~%" pid status)
|
; "Reaping ~d[~d]~%" pid status)
|
||||||
(lp))
|
(lp))
|
||||||
status))))
|
status))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue