-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignalHandler.h
More file actions
40 lines (33 loc) · 936 Bytes
/
SignalHandler.h
File metadata and controls
40 lines (33 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* \file SignalHandler.h
* \brief
*/
#pragma once
#include <stdexcept>
// #include <signal.h>
// #include <errno.h>
//-------------------------------------------------------------------------------------------------
class SignalException :
public std::runtime_error
{
public:
SignalException(const std::string& _message) :
std::runtime_error(_message)
{
}
};
//-------------------------------------------------------------------------------------------------
class SignalHandler
{
protected:
static bool _isGotExitSignal;
public:
SignalHandler() = default;
~SignalHandler() = default;
static bool gotExitSignal();
static void setExitSignal(bool bExitSignal);
void setupSignalHandlers();
static void exitSignalHandler(int ignored);
};
//-------------------------------------------------------------------------------------------------
#include "SignalHandler.inl"