I want to create a multiprocess application where each process has
a specialized and distinct function.
I can either fork()/exec() separate programs for each process
or link of the separate programs into a single dynamically linked image
and fork() multiple instances of it.
Question: which approach is the more efficient (under SunOS 4.1.x and 5.x)?
-Paul O'Keefe