GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
GETTID(3PVM) PVM Version 3.4 GETTID(3PVM)

pvm_gettid - 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 )

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.

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.
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.

pvm_joingroup(3PVM), pvm_getinst(3PVM)
30 August, 1993

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.