- Library Clean up: - Removed all unused C/C++ libraries from source - First C/C++ libraries then redA libraries - Library changes: - renamed BufferCore -> CharBufferCore - added ItemBufferCore - CharBufferCore: - Derive RollingBuffer & ShiftBuffer from common class CharBuffer - CharBuffer is mostly a virtual class (interface)
24 lines
500 B
C
24 lines
500 B
C
/*
|
|
* SignalCore.h
|
|
*
|
|
* Created on: 17 May 2016
|
|
* Author: wentzelc
|
|
*/
|
|
|
|
#ifndef REDACORE_SIGNALCORE_H_
|
|
#define REDACORE_SIGNALCORE_H_
|
|
|
|
// Standard C/C++ Libraries
|
|
/* none */
|
|
|
|
// redA Libraries
|
|
/* none */
|
|
|
|
//---------------------------------------------------------------------------
|
|
void ConfigureSignalHandlers();
|
|
void SignalTerminate( int sig );
|
|
void SignalAbort( int sig );
|
|
|
|
//---------------------------------------------------------------------------
|
|
#endif /* REDACORE_SIGNALCORE_H_ */
|