~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/pvm/pvm_start.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
pvm_start         Scilab // Group         Scilab function         pvm_start
 
2
NAME
 
3
   pvm_start - Start the PVM daemon
 
4
  
 
5
CALLING SEQUENCE
 
6
 [info] = pvm_start(["hostfile"])
 
7
PARAMETERS
 
8
 hostfile
 
9
        : name of the hostfile describing the configuration for each host of the
 
10
       virtual machine.
 
11
       
 
12
 info  : integer, status code returned by the routine. Values less than
 
13
       zero indicate an error. 
 
14
       
 
15
DESCRIPTION
 
16
   pvm_start  starts the  Pvmd3 which is    a daemon process  which
 
17
  coordinates  unix hosts in a  virtual machine.  One  pvmd3 must run on
 
18
  each  host in the group.   They provide  the communication and process
 
19
  control functions  needed by the user's PVM  processes.  The local and
 
20
  remote pvmds can also be started from the PVM console program pvm.  The
 
21
  optional parameter is the name of a host file. See pvmd3 for more details
 
22
  on the host file format. If no argument is given to pvm_start, but the
 
23
  variable  PVM_ROOT is set, scilab will try to load the file
 
24
  $HOME/.pvmd.conf. If this file does not exist, or the variable PVM_ROOT
 
25
  is not set, scilab will try to load the default file  $SCI/.pvmd.conf. In
 
26
  all other cases, scilab will supposed that  PVM and scilab are in
 
27
  standard place on your net.   Note that, to be able to start a PVM
 
28
  daemon, scilex must know the place to find both scilex and pvmd.
 
29
  Normally, scilex will start a new PVM daemon by using rsh. See the help
 
30
  on pvmd3 and pvm for more detail  on how to start/stop pvm.  For example:
 
31
  
 
32
 pvm_start()
 
33
  ans  =
 
34
  
 
35
     0. 
 
36
 -->pvm_start()
 
37
  ans  =
 
38
  
 
39
   - 28.  
 
40
   Error -28 means: pvm_start_pvmd(): Duplicate host
 
41
  
 
42
SEE ALSO
 
43
   pvmd3, pvm_halt, pvm_addhosts, pvm_config
 
44