pvm_gettid
Returns the tid of the process identified by a group name and instance number.
- Provided by: pvm-dev (Version: 3.4.6-3.2)
- Source: pvm
- Report a bug
Returns the tid of the process identified by a group name and instance number.
C int tid = pvm_gettid( char *group, int inum ) Fortran call pvmfgettid( group, inum, tid )
The routine pvm_gettid returns the tid of the PVM process identified by the group name group and the instance number inum. If pvm_gettid is successful, tid will be > 0. If some error occurs then tid will be < 0.
C:
tid = pvm_gettid("worker",0);
Fortran:
CALL PVMFGETTID('worker',5,TID)
These error conditions can be returned by pvm_gettid.
pvm_joingroup(3PVM), pvm_getinst(3PVM)