1LVGROUP(3PVM) PVM Version 3.4 LVGROUP(3PVM)
2
3
4
6 pvm_lvgroup - Unenrolls the calling process from a named group.
7
8
10 C int info = pvm_lvgroup( char *group )
11
12 Fortran call pvmflvgroup( group, info )
13
14
16 group Character string group name of an existing group.
17
18 info Integer status code returned by the routine. Values less than
19 zero indicate an error.
20
21
23 The routine pvm_lvgroup unenrolls the calling process from the group
24 named group. If there is an error info will be negative.
25
26 If a process leaves a group by calling either pvm_lvgroup or pvm_exit,
27 and later rejoins the same group, the process may be assigned a new
28 instance number. Old instance numbers are reassigned to processes call‐
29 ing pvm_joingroup.
30
31
33 C:
34 info = pvm_lvgroup( "worker" );
35
36 Fortran:
37 CALL PVMFLVGROUP( 'group2', INFO )
38
39
41 These error conditions can be returned by pvm_lvgroup
42
43 PvmSysErr
44 pvmd not responding.
45
46 PvmBadParam
47 giving a NULL group name.
48
49 PvmNoGroup
50 giving a non-existent group name.
51
52 PvmNotInGroup
53 asking to leave a group you are not a member of.
54
56 pvm_joingroup(3PVM)
57
58
59
60 30 August, 1993 LVGROUP(3PVM)