Files
redAcore/TimingCore.h
Charl Wentzel f987ea2224 Important Update:
- Added SignalCore for handling system signals
- Implemented LogMessages (only output to stdout, later to logfile)
- Updated #defines for all header files
2016-05-17 12:24:51 +02:00

26 lines
548 B
C

/*
* Timing.h
*
* Created on: 13 May 2016
* Author: wentzelc
*/
#ifndef REDACORE_TIMINGCORE_H_
#define REDACORE_TIMINGCORE_H_
// redA Libraries
/* none */
// Standard C/C++ Libraries
#include <sys/time.h>
//---------------------------------------------------------------------------
void SetInterval( timeval *Time, long MilliSeconds );
void SetStartTime( timeval *StartTime );
long TimePassed( timeval StartTime );
//---------------------------------------------------------------------------
#endif /* REDACORE_TIMINGCORE_H_ */