mirror of
https://github.com/nasa/trick.git
synced 2025-02-05 10:29:19 +00:00
24 lines
389 B
C
24 lines
389 B
C
|
|
#ifndef _CLOCK_PROTO_H_
|
|
#define _CLOCK_PROTO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
long long clock_time() ;
|
|
long long clock_wall_time() ;
|
|
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() ;
|
|
int clock_set_rt_clock_ratio(double in_rt_clock_ratio) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|