#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/io.scm,v 14.22 1991/03/11 23:48:00 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/io.scm,v 14.23 1991/03/14 04:29:03 cph Exp $
Copyright (c) 1988-91 Massachusetts Institute of Technology
(define (pty-master-quit channel)
((ucode-primitive pty-master-quit 1) (channel-descriptor channel)))
+
+(define (pty-master-hangup channel)
+ ((ucode-primitive pty-master-hangup 1) (channel-descriptor channel)))
\f
;;;; File Copying
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/process.scm,v 1.10 1991/03/11 23:48:06 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/process.scm,v 1.11 1991/03/14 04:29:11 cph Exp $
Copyright (c) 1989-91 Massachusetts Institute of Technology
(define (subprocess-quit process)
((ucode-primitive process-quit 1) (subprocess-index process)))
+(define (subprocess-hangup process)
+ ((ucode-primitive process-hangup 1) (subprocess-index process)))
+
(define (subprocess-stop process)
((ucode-primitive process-stop 1) (subprocess-index process)))
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.98 1991/03/11 23:48:12 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.99 1991/03/14 04:29:17 cph Exp $
Copyright (c) 1988-91 Massachusetts Institute of Technology
channel-blocking
channel-blocking?
channel-close
+ channel-closed?
channel-nonblocking
+ channel-open?
channel-port
channel-read
channel-read-block
make-pipe
open-pty-master
pty-master-continue
+ pty-master-hangup
pty-master-interrupt
pty-master-kill
pty-master-quit
subprocess-filename
subprocess-get
subprocess-global-status-tick
+ subprocess-hangup
subprocess-id
subprocess-input-channel
subprocess-input-port
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.112 1991/03/11 23:48:20 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.113 1991/03/14 04:29:29 cph Exp $
Copyright (c) 1988-91 Massachusetts Institute of Technology
'()))
(add-system! microcode-system)
(add-event-receiver! event:after-restore snarf-microcode-version!)
- (add-identification! "Runtime" 14 112))
+ (add-identification! "Runtime" 14 113))
(define microcode-system)
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.98 1991/03/11 23:48:12 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.99 1991/03/14 04:29:17 cph Exp $
Copyright (c) 1988-91 Massachusetts Institute of Technology
channel-blocking
channel-blocking?
channel-close
+ channel-closed?
channel-nonblocking
+ channel-open?
channel-port
channel-read
channel-read-block
make-pipe
open-pty-master
pty-master-continue
+ pty-master-hangup
pty-master-interrupt
pty-master-kill
pty-master-quit
subprocess-filename
subprocess-get
subprocess-global-status-tick
+ subprocess-hangup
subprocess-id
subprocess-input-channel
subprocess-input-port