fork-process ( -- pid )


Vocabulary
unix.process

Definition
USING: unix ;

IN: unix.process

: fork-process ( -- pid ) [ fork ] unix-system-call ;