pvm_exit(3) - Linux man page
Name
pvm_exit - Tells the local pvmd that this process is leaving PVM.Synopsis
C int info = pvm_exit( void ) Fortran call pvmfexit( info )
Parameters
- info
- Integer status code returned by the routine. Values less than zero indicate an error.
Description
The routine pvm_exit tells the local pvmd that this process is leaving PVM. This routine does not kill the process, which can continue to perform tasks just like any other serial process.pvm_exit should be called by all PVM processes before they stop or exit for good. It must be called by processes that were not started with pvm_spawn.
Examples
C:
/* Program done */
pvm_exit();
exit();
Fortran:
CALL PVMFEXIT(INFO)
STOP
Errors
- PvmSysErr
- pvmd not responding