- Added SignalCore for handling system signals - Implemented LogMessages (only output to stdout, later to logfile) - Updated #defines for all header files
29 lines
632 B
C
29 lines
632 B
C
/*
|
|
* Select.h
|
|
*
|
|
* Created on: 13 May 2016
|
|
* Author: wentzelc
|
|
*/
|
|
|
|
#ifndef REDACORE_SELECTCORE_H_
|
|
#define REDACORE_SELECTCORE_H_
|
|
|
|
// redA Libraries
|
|
/* none */
|
|
|
|
// Standard C/C++ Libraries
|
|
/* none */
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
void SelectConfig( long Timeout );
|
|
void SelectClear();
|
|
void SelectAdd( int FD, bool Read, bool Write );
|
|
void SelectRemove( int FD, bool Read, bool Write );
|
|
bool SelectTest();
|
|
bool SelectCheck( int FD, bool &Read, bool &Write );
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif /* REDACORE_SELECTCORE_H_ */
|