Added pty stuff, select!, become-session-leader, copy-vector, and
process-related tty stuff.
This commit is contained in:
parent
6ff4d51074
commit
a991a0a4e6
|
@ -126,6 +126,7 @@
|
||||||
seek/end
|
seek/end
|
||||||
|
|
||||||
select
|
select
|
||||||
|
select!
|
||||||
|
|
||||||
flush-all-ports
|
flush-all-ports
|
||||||
y-or-n?
|
y-or-n?
|
||||||
|
@ -162,6 +163,12 @@
|
||||||
with-region-lock*
|
with-region-lock*
|
||||||
(with-region-lock :syntax)
|
(with-region-lock :syntax)
|
||||||
|
|
||||||
|
fork-job/pty
|
||||||
|
open-pty
|
||||||
|
pty-name->tty-name
|
||||||
|
tty-name->pty-name
|
||||||
|
make-pty-generator
|
||||||
|
|
||||||
with-current-input-port*
|
with-current-input-port*
|
||||||
(with-current-input-port :syntax)
|
(with-current-input-port :syntax)
|
||||||
with-current-output-port*
|
with-current-output-port*
|
||||||
|
@ -315,6 +322,7 @@
|
||||||
parent-pid
|
parent-pid
|
||||||
process-group
|
process-group
|
||||||
set-process-group
|
set-process-group
|
||||||
|
become-session-leader
|
||||||
|
|
||||||
user-login-name
|
user-login-name
|
||||||
user-uid
|
user-uid
|
||||||
|
@ -527,7 +535,7 @@
|
||||||
|
|
||||||
(define-interface scsh-utilities-interface
|
(define-interface scsh-utilities-interface
|
||||||
(export del delete index rindex reduce filter first any first? nth
|
(export del delete index rindex reduce filter first any first? nth
|
||||||
any? every? mapv mapv! vector-every?
|
any? every? mapv mapv! vector-every? copy-vector
|
||||||
optional-arg optional-arg* parse-optionals
|
optional-arg optional-arg* parse-optionals
|
||||||
check-arg conjoin disjoin negate compose reverse! call/cc
|
check-arg conjoin disjoin negate compose reverse! call/cc
|
||||||
deprecated-proc
|
deprecated-proc
|
||||||
|
@ -949,4 +957,8 @@
|
||||||
|
|
||||||
encode-baud-rate
|
encode-baud-rate
|
||||||
decode-baud-rate
|
decode-baud-rate
|
||||||
|
|
||||||
|
open-control-tty
|
||||||
|
set-tty-process-group
|
||||||
|
tty-process-group
|
||||||
)))
|
)))
|
||||||
|
|
Loading…
Reference in New Issue