summaryrefslogtreecommitdiff
path: root/scsh-process.scm
diff options
context:
space:
mode:
Diffstat (limited to 'scsh-process.scm')
-rw-r--r--scsh-process.scm39
1 files changed, 23 insertions, 16 deletions
diff --git a/scsh-process.scm b/scsh-process.scm
index 46fba8d..c6e4337 100644
--- a/scsh-process.scm
+++ b/scsh-process.scm
@@ -111,22 +111,29 @@
(set-signal-handler!
signal/chld
- (let ((old-handler (signal-handler signal/chld)))
- (lambda (signal)
- (for-each (lambda (pid)
- (handle-exceptions exn
- ;; User might have waited manually
- (begin (remove-scsh-pending-process! pid) (void))
- (receive (pid ok? status)
- (posix-process-wait pid #t)
- (unless (zero? pid)
- (let ((p (hash-table-ref *scsh-pending-processes* pid)))
- (scsh-process-exit-status-set! p status)
- (scsh-process-ok?-set! p ok?)
- ;; The GC can clean it up
- (remove-scsh-pending-process! pid))))))
- (hash-table-keys *scsh-pending-processes*))
- (when old-handler (old-handler signal))))))
+ ;; This workaround fixes the "signal-hander" type in the types.db of 4.8.0
+ (let-syntax ((workaround
+ (cond-expand
+ (chicken-4.8
+ (syntax-rules ()
+ ((_ val) (the (or boolean (procedure (fixnum) . *)) val))))
+ (else (syntax-rules () ((_ val) val))))))
+ (let ((old-handler (workaround (signal-handler signal/chld))))
+ (lambda (signal)
+ (for-each (lambda (pid)
+ (handle-exceptions exn
+ ;; User might have waited manually
+ (begin (remove-scsh-pending-process! pid) (void))
+ (receive (pid ok? status)
+ (posix-process-wait pid #t)
+ (unless (zero? pid)
+ (let ((p (hash-table-ref *scsh-pending-processes* pid)))
+ (scsh-process-exit-status-set! p status)
+ (scsh-process-ok?-set! p ok?)
+ ;; The GC can clean it up
+ (remove-scsh-pending-process! pid))))))
+ (hash-table-keys *scsh-pending-processes*))
+ (when old-handler (old-handler signal)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;