Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-08-30 18:59:36 -0700 (Mon, 30 Aug 2004)
Revision: 509
Log message:
Execute inline rule expressions in a separate thread/process.
This fixes the problem of blocking while executing rules with
a body that is an expression.
target: src
f()
It used to be that omake would block if f() generated lots of output.
Now f() is evaluated in a separate thread (on Win32) or process (forked
in Unix). This allows omake to continue normal processing.