Query: pvmfkill
OS: redhat
Section: 3pvm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
KILL(3PVM) PVM Version 3.4 KILL(3PVM)NAMEpvm_kill - Terminates a specified PVM process.SYNOPSISC int info = pvm_kill( int tid ) Fortran call pvmfkill( tid, info )PARAMETERStid Integer task identifier of the PVM process to be killed (not yourself). info Integer status code returned by the routine. Values less than zero indicate an error.DESCRIPTIONThe routine pvm_kill sends a terminate (SIGTERM) signal to the PVM process identified by tid. In the case of multiprocessors the terminate signal is replaced with a host dependent method for killing a process. If pvm_kill is successful, info will be 0. If some error occurs then info will be < 0. pvm_kill is not designed to kill the calling process. To kill yourself in C call pvm_exit() followed by exit(). To kill yourself in For- tran call pvmfexit followed by stop.EXAMPLESC: info = pvm_kill( tid ); Fortran: CALL PVMFKILL( TID, INFO )ERRORSThese error conditions can be returned by pvm_kill PvmBadParam giving an invalid tid value. PvmSysErr pvmd not responding.SEE ALSOpvm_exit(3PVM), pvm_halt(3PVM) 30 August, 1993 KILL(3PVM)
Related Man Pages |
---|
pvm_sendsig(3pvm) - redhat |
pvmfkill(3pvm) - redhat |
pvmfmytid(3pvm) - redhat |
pvm_sendsig(3pvm) - debian |
pvmfkill(3pvm) - debian |
Similar Topics in the Unix Linux Community |
---|
UNIX Process Suspend |
About kill process |
Cut string from a line into a variable |
Kill a process |
Kill an specific process ID using the KILL and GREP commands |