trick/include/trick/realtimesync_proto.h
jmpenn fccf32093b
Explicitly specify void arg for C functions that take no arguments. (#670)
* 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
2018-09-19 11:25:04 -05:00

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