mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
25 lines
443 B
C
25 lines
443 B
C
|
|
#ifndef CLOCK_PROTO_H
|
|
#define CLOCK_PROTO_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
long long clock_time(void) ;
|
|
long long clock_wall_time(void) ;
|
|
long long clock_reset(long long ref) ;
|
|
int clock_spin(long long ref) ;
|
|
int clock_set_reference(long long ref) ;
|
|
double clock_get_rt_clock_ratio(void) ;
|
|
int clock_set_rt_clock_ratio(double in_rt_clock_ratio) ;
|
|
unsigned long long clock_tics_per_sec(void) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|