logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

pvm_gettid - Returns the tid of the process identified by a group name and instance number.

Description

       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.

Errors

       These error conditions can be returned by pvm_gettid.

       PvmSysErr
              Can not contact the local pvmd; most likely it is not running.

       PvmBadParam
              Bad Parameter most likely a NULL character string.

       PvmNoGroup
              No group exists by that name.

       PvmNoInst
              No such instance in the group.

Examples

       C:
              tid = pvm_gettid("worker",0);

       Fortran:
               CALL PVMFGETTID('worker',5,TID)

Name

       pvm_gettid - Returns the tid of the process identified by a group name and instance number.

Parameters

       group   Character string that contains the name of an existing group.

       inum    Integer instance number of the process in the group.

       tid     Integer task identifier returned.

See Also

pvm_joingroup(3PVM), pvm_getinst(3PVM)

                                                 30 August, 1993                                    GETTID(3PVM)

Synopsis

Cinttid=pvm_gettid(char*group,intinum)Fortrancallpvmfgettid(group,inum,tid)

See Also