START_PVMDSection: PVM Version 3.4 (3PVM)Updated: 11 December, 1995 |
START_PVMDSection: PVM Version 3.4 (3PVM)Updated: 11 December, 1995 |
C int info = pvm_start_pvmd( int argc, char **argv, int block )
Fortran call pvmfstartpvmd( args, block, info )
If PVM is compiled to allow running more than one pvmd per host, a task calling pvm_start_pvmd before any other pvm functions will connect to the pvmd that it starts. pvm_start_pvmd sets environment variable PVMSOCK to the address printed by the pvmd as it starts up.
C:
static char *argv[] = {
"-d41",
"/u/jones/pvmd_hosts",
};
argc = 2
info = pvm_start_pvmd( argc, argv, block );
Fortran:
CALL PVMFSTART_PVMD( '-d41 /u/jones/pvmd_hosts', BLOCK, INFO )
C:
static char *argv[] = {
"-d41",
"/u/jones/pvmd_hosts",
};
argc = 2
info = pvm_start_pvmd( argc, argv, block );
Fortran:
CALL PVMFSTART_PVMD( '-d41 /u/jones/pvmd_hosts', BLOCK, INFO )