Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 2.1AS

(Slurm)

pvm_exit(3)


EXIT

EXIT

NAME
SYNOPSIS
PARAMETERS
DESCRIPTION
EXAMPLES
ERRORS
SEE ALSO

NAME

pvm_exit − Tells the local pvmd that this process is leaving PVM.

SYNOPSIS

C

int info = pvm_exit( void )

Fortran

call pvmfexit( info )

PARAMETERS

info

Integer status code returned by the routine. Values less than zero indicate an error.

DESCRIPTION

The routine pvm_exit tells the local pvmd that this process is leaving PVM. This routine does not kill the process, which can continue to perform tasks just like any other serial process.

pvm_exit should be called by all PVM processes before they stop or exit for good. It must be called by processes that were not started with pvm_spawn.

EXAMPLES

C:

/* Program done */

pvm_exit();

exit();

Fortran:

CALL PVMFEXIT(INFO)

STOP

ERRORS

PvmSysErr

pvmd not responding

SEE ALSO



pvm_exit(3)