1EXIT(3PVM) PVM Version 3.4 EXIT(3PVM)
2
3
4
6 pvm_exit - Tells the local pvmd that this process is leaving PVM.
7
8
10 C int info = pvm_exit( void )
11
12 Fortran call pvmfexit( info )
13
14
16 info Integer status code returned by the routine. Values less than
17 zero indicate an error.
18
19
21 The routine pvm_exit tells the local pvmd that this process is leaving
22 PVM. This routine does not kill the process, which can continue to
23 perform tasks just like any other serial process.
24
25 pvm_exit should be called by all PVM processes before they stop or exit
26 for good. It must be called by processes that were not started with
27 pvm_spawn.
28
29
31 C:
32 /* Program done */
33 pvm_exit();
34 exit();
35
36 Fortran:
37 CALL PVMFEXIT(INFO)
38 STOP
39
40
42 PvmSysErr
43 pvmd not responding
44
46 30 August, 1993 EXIT(3PVM)