12 lines
217 B
C
12 lines
217 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include "Configuration.h"
|
||
|
|
||
|
namespace ts {
|
||
|
namespace syssignal {
|
||
|
extern bool setup();
|
||
|
extern bool setup_threads();
|
||
|
extern void handleStopSignal(int);
|
||
|
}
|
||
|
}
|