1 02/05/82 clock_
2
3
4 Entry points in clock_:
5 List is generated by the help command
6
7
8 :Entry: clock_: 01/28/82 clock_
9
10
11 Function: reads the system clock and returns a fixed binary number
12 equal to the number of microseconds since 0000 hours Greenwich mean
13 time January 1, 1901. The returned time is suitable for input to the
14 date_time_ or decode_clock_value_ subroutines, which convert the clock
15 reading to an ASCII representation.
16
17
18 Syntax:
19 declare clock_ entry returns fixed bin71;
20 date_time = clock_ ;
21
22
23 Arguments:
24 date_time
25 is the number of microseconds since January 1, 1901, 0000 hours
26 Greenwich mean time. Output
27
28
29 Notes: The clock PL/I builtin function should be used in PL/I programs
30 instead of this subroutine, because it is more efficient.