Go to the first, previous, next, last section, table of contents.


forkJob

Control-struct: forkJob { name -> job }
file: 10-C-utils.t
package: muf
status: alpha

The forkJob operator is a simple convenience which does a copyJob and then runs the child, yielding something closer to the unix semantics.

It is currently implemented as:


: forkJob   { $ -> $ } -> name
    name copyJob -> j
    j if j runJob fi
    j
;

See section copyJob.


Go to the first, previous, next, last section, table of contents.