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


forkSession

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

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

It is currently implemented as:

: forkSession   { $ -> $ } -> name
    name copySession -> j
    j if j runJob fi
    j
;

See section copySession.


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