- Scilab help
- PVM parallel Toolbox
- pvm
- pvm_addhosts
- pvm_barrier
- pvm_bcast
- pvm_bufinfo
- pvm_config
- pvm_delhosts
- pvm_error
- pvm_exit
- pvm_f772sci
- pvm_get_timer
- pvm_getinst
- pvm_gettid
- pvm_gsize
- pvm_halt
- pvm_joingroup
- pvm_kill
- pvm_lvgroup
- pvm_mytid
- pvm_parent
- pvm_probe
- pvm_recv
- pvm_reduce
- pvm_sci2f77
- pvm_send
- pvm_set_timer
- pvm_spawn
- pvm_spawn_independent
- pvm_start
- pvm_tasks
- pvm_tidtohost
- pvmd3
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
pvm_delhosts
deletes hosts from the virtual machine.
Calling Sequence
infos = pvm_delhosts(hosts)
Arguments
- hosts
row of strings, containing the names of the machines to be deleted.
- infos
row of integers, contains the status code returned by the routine for the individual hosts.
Description
pvm_delhosts
deletes the computers named in
hosts
from the existing configuration of computers making up the virtual
machine.
All PVM processes and the pvmd running on these computers are
killed as the computer is deleted.
The array info
can be checked to determine the status of each host.
Values less than zero indicate an error,
while zero values indicate a success.
If a host fails, the PVM system will continue to work and will automatically delete the failing host from the virtual machine. It is the responsibility of the application developer to make his application tolerant of host failure.
See Also
- pvm_addhosts — add hosts to the virtual machine.
<< pvm_config | PVM parallel Toolbox | pvm_error >> |