#include <Runnable.h>
Inheritance diagram for util::Process:

The new process is created using the fork system call. Note that the new process works in its own environment. Therefore, communication between processes cannot be made using variables, but shared memory or pipes or the like must be used.
Public Methods | |
| Process () | |
| void | start (void) throw (RunException&) |
| Start the parallel processing. | |
|
|
Start the parallel processing. A new thread, process or daemon is created and its run method is called.
Implements util::Runnable. |