Important Update:

- Added SignalCore for handling system signals
- Implemented LogMessages (only output to stdout, later to logfile)
- Updated #defines for all header files
This commit is contained in:
Charl Wentzel
2016-05-17 12:24:51 +02:00
parent eb0ab67499
commit f987ea2224
9 changed files with 192 additions and 18 deletions

23
SignalCore.h Normal file
View File

@@ -0,0 +1,23 @@
/*
* SignalCore.h
*
* Created on: 17 May 2016
* Author: wentzelc
*/
#ifndef REDACORE_SIGNALCORE_H_
#define REDACORE_SIGNALCORE_H_
// redA Libraries
/* none */
// Standard C/C++ Libraries
/* none */
//---------------------------------------------------------------------------
void ConfigureSignalHandlers();
void SignalTerminate( int sig );
void SignalAbort( int sig );
//---------------------------------------------------------------------------
#endif /* REDACORE_SIGNALCORE_H_ */