1ETIME(3F) ETIME(3F)
2
3
4
6 etime, dtime - return elapsed execution time
7
9 function etime (tarray)
10 real tarray(2)
11
12 function dtime (tarray)
13 real tarray(2)
14
16 These two routines return elapsed runtime in seconds for the calling
17 process. Dtime returns the elapsed time since the last call to dtime,
18 or the start of execution on the first call.
19
20 The argument array returns user time in the first element and system
21 time in the second element. The function value is the sum of user and
22 system time.
23
24 The resolution of all timing is 1/HZ sec. where HZ is currently 60.
25
27 /usr/lib/libU77.a
28
30 times(2)
31
32
33
344.2 Berkeley Distribution May 15, 1985 ETIME(3F)