mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
fccf32093b
* Clock empty args to void * command_line func empty args to void * DataRecord func empty args to void * debug_pause func empty args to void * echojobs func empty args to void * ExternalApplication func empty args to void * FrameLog func empty args to void * MasterSlave func empty args to void * MonteCarlo func empty args to void * outdllist func proto empty args to void * sie func empty args to void * SimTime func empty args to void * UnitTest func empty args to void * var_server func empty args to void * wcs func empty args to void
34 lines
661 B
C
34 lines
661 B
C
|
|
#ifndef REALTIMESYNC_PROTO_H
|
|
#define REALTIMESYNC_PROTO_H
|
|
|
|
#ifdef __cplusplus
|
|
#include "trick/Clock.hh"
|
|
#include "trick/Timer.hh"
|
|
int real_time_change_clock(Trick::Clock * in_clock ) ;
|
|
int real_time_change_timer(Trick::Timer * in_sleep_timer ) ;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int real_time_enable(void) ;
|
|
int real_time_disable(void) ;
|
|
int real_time_restart(long long ref_time ) ;
|
|
int is_real_time(void) ;
|
|
const char * real_time_clock_get_name(void) ;
|
|
int real_time_set_rt_clock_ratio(double in_clock_ratio) ;
|
|
int real_time_lock_memory(int yes_no) ;
|
|
|
|
// Deprecated
|
|
int exec_set_lock_memory(int yes_no) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|