|
NAMEpvm_gettid - Returns the tid of the process identified by a group name and instance number. SYNOPSISC int tid = pvm_gettid( char *group, int inum ) PARAMETERSDESCRIPTIONThe 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. EXAMPLESC:
tid = pvm_gettid("worker",0);
Fortran:
CALL PVMFGETTID('worker',5,TID)
ERRORSThese error conditions can be returned by pvm_gettid.
SEE ALSOpvm_joingroup(3PVM), pvm_getinst(3PVM)
|