Handbook
Glossary
posix-spawn-custom-env ( cmd env -- int )
Vocabulary
unix
.
process
Inputs
cmd
an
object
env
an
object
Outputs
int
an
object
Definition
USING:
kernel
sequences
simple-tokenizer
strings
;
IN:
unix.process
:
posix-spawn-custom-env
( cmd env -- int )
[
dup
string?
[
tokenize
]
when
]
dip
[
[
first
posix-spawn-file-actions-init
posix-spawnattr-init
]
keep
]
dip
posix-spawn-call
;