~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/pvm/pvm_config.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
pvm_config        Scilab // Group        Scilab function         pvm_config
2
 
NAME
3
 
   pvm_config - sends a message
4
 
  
5
 
CALLING SEQUENCE
6
 
 res =  pvm_config()
7
 
PARAMETERS
8
 
 res, list of 7 elements such that:
9
 
         res(1):  integer returning the number of hosts (pvmds) in the virtual
10
 
       machine.
11
 
       
12
 
       res(2):  integer returning the number of different data formats
13
 
       being used.
14
 
       
15
 
       res(3):  integer returning pvmd task ID for host.
16
 
       
17
 
       res(4):  character string returning name of host.
18
 
       
19
 
       res(5):  character string returning architecture name of host
20
 
       
21
 
       res(6):  integer returning relative speed of host. Default value is
22
 
       1000.
23
 
       
24
 
       res(7):  integer status code returned by the routine. 
25
 
       
26
 
DESCRIPTION
27
 
   pvm_config returns information about the present virtual machine. The
28
 
  information returned is similar to that available from the console
29
 
  command
30
 
  
31
 
   The pvm_config function returns information about the entire virtual
32
 
  machine in one call.  If pvm_config is successful,
33
 
  
34
 
   will be 0. If some error occurs then
35
 
  
36
 
   will be < 0. 
37
 
  
38
 
EXAMPLE
39
 
 res = pvm_config()
40
 
   
41
 
  
42
 
SEE ALSO
43
 
   pvm_tasks
44