RCS $Id: README,v 1.3 1995/08/22 23:41:11 tuna Exp $

Using pvm_app.c:
----------------
When using pvm_app.c, the application should be started from the
command line. The application realizes that this is the starting
process since it does not have a PVM Parent. So the application cannot
be started by spawning from a PVM process.

The starting process then spawns off all of the other processes and
becomes their parent. Each child's output is redirect to the starting
process's stdout.

Each child joins the PVM group containing all of the CRL nodes and
then waits for all other children to join. Next main2(), the main
function for the code that is going to use CRL, is called. Just before
completing execution, the process leaves the group.

main() calls pvm_initsend(), and sends and receives messages before
calling main2(). So if PVM message buffers are partially filled prior
to the execution of this function, the results are undefined.

The code in pvm_app.c does not call crl_init(), so it is expected that
the user code will call crl_init(GROUP), where GROUP is defined in
pvm_app.c.
