1SERROR(3PVM) PVM Version 3.4 SERROR(3PVM)
2
3
4
6 pvm_serror - Sets automatic error message printing on or off.
7 [In Version 3.2: Replaced by pvm_setopt]
8
9
11 C int oldset = pvm_serror( int set )
12
13 Fortran call pvmfserror( set, oldset )
14
15
17 set Integer defining whether detection is to be turned on (1) or
18 off (0).
19
20 oldset Integer defining the previous setting of pvm_serror.
21
22
24 The routine pvm_serror sets automatic error message printing for all
25 subsequent PVM calls by this process. Any PVM routines that return an
26 error condition will automatically print the associated error message.
27 The argument set defines whether this detection is to be turned on (1)
28 or turned off (0) for subsequent calls. In the future a value of (2)
29 will cause the program to exit after printing the error message.
30 pvm_serror returns the previous value of set in oldset.
31
32 All stdout and stderr messages are placed in the file /tmp/pvml.<uid>
33 on the master pvmd's host.
34
35
37 C:
38 info = pvm_serror( 1 );
39 Fortran:
40 CALL PVMFSERROR( 0, INFO )
41
42
44 This error condition can be returned by pvm_serror
45
46 PvmBadParam
47 giving an invalid set value.
48
50 pvm_setopt(3PVM)
51
52
53
54 30 August, 1993 SERROR(3PVM)