TIME_$CLOCK Domain/OS TIME_$CLOCK
NAME
time_$clock - get the system clock value
SYNOPSIS (C)
#include <apollo/base.h>
#include <apollo/time.h>
void time_$clock(
time_$clock_t *clock_value)
SYNOPSIS (Pascal)
%include '/sys/ins/base.ins.pas';
%include '/sys/ins/time.ins.pas';
procedure time_$clock(
out clock_value: time_$clock_t);
SYNOPSIS (FORTRAN)
%include '/sys/ins/base.ins.ftn'
%include '/sys/ins/time.ins.ftn'
integer*2 clock_value(3), clockh
integer*4 clockl
equivalence (clockl, clock_value(2)), (clockh, clock_value(1))
call time_$clock(clock_value)
DESCRIPTION
Time_$clock supplies the system clock value in clock_value.
clock_value
The value of the system clock.
SEE ALSO
cal_$apply_local_offset, cal_$get_local_time.