mirror of
https://github.com/nasa/trick.git
synced 2025-01-24 13:28:18 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
24 lines
385 B
C
24 lines
385 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
|
|
|