hey! i took that!.....

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements hey! i took that!.....
# 1  
Old 05-05-2004
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Cybersecurity

Hey guys

Hey guys, new geek here, sorry I didnt see a intro section. But I do have a question and hope to make my stay here perma. I am interested in IT security, ands I really want to learn, I was hoping for whatever questions I had you guys could lead me through the narrowest path with a broad selection... (1 Reply)
Discussion started by: abeja
1 Replies

2. Post Here to Contact Site Administrators and Moderators

hey

can anyone tell me where I can write e-mails I can't find it. I just started being on this site just a few days ago and it sucks. (4 Replies)
Discussion started by: niobe497
4 Replies

3. Shell Programming and Scripting

Hey Look at this....

Hi guys, what is the significance of 'l' in the permissions given below? lrwxrwxrwx 1 root sys 40 Mar 20 18:31 aas Generally if a 'd' is present, we say that it is a directory? I see an 'l'. Can anyone say what it signifies? Thanks, Nisha :eek: (6 Replies)
Discussion started by: Nisha
6 Replies
Login or Register to Ask a Question
GETTID(3PVM)							  PVM Version 3.4						      GETTID(3PVM)

NAME
pvm_gettid - Returns the tid of the process identified by a group name and instance number. SYNOPSIS
C int tid = pvm_gettid( char *group, int inum ) Fortran call pvmfgettid( group, inum, tid ) 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. 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. EXAMPLES
C: tid = pvm_gettid("worker",0); Fortran: CALL PVMFGETTID('worker',5,TID) 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. SEE ALSO
pvm_joingroup(3PVM), pvm_getinst(3PVM) 30 August, 1993 GETTID(3PVM)