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

« back to all changes in this revision

Viewing changes to man/pvm/pvm_get_timer.man

  • 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
 
.TH pvm_get_timer 1 "January 1998" "Scilab // Group" "Scilab function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
pvm_get_timer - Gets the  system's notion  of  the current time.
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
[time] = pvm_get_timer()
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 5
11
 
time
12
 
: scalar
13
 
.SH DESCRIPTION
14
 
\fVpvm_get_timer\fR returns the  time elapsed since  the last  call of
15
 
pvm_get_timer or   the  last  call  of  pvm_set_timer.  The  time   is
16
 
expressed in elapsed microseconds.  The resolution of the system clock
17
 
is  hardware  dependent; the  time may  be  updated continuously or in
18
 
clock ticks.
19
 
.I timer
20
 
will be > 0.
21
 
If some error occurs then
22
 
.I timer
23
 
will be -1.
24
 
 
25
 
.SH EXAMPLE
26
 
.nf
27
 
B = rand(100,100);
28
 
A = rand(100,100);
29
 
pvm_set_timer();C=A*B;t=pvm_get_timer()
30
 
.fi
31
 
.SH SEE ALSO
32
 
pvm_set_timer