mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
Merge pull request #359 from AxtonF/HandleSIGTERM
Add handling of SIGTERM
This commit is contained in:
commit
b8c1f7629e
@ -63,6 +63,7 @@ int main(int argc, char** argv) {
|
||||
//Triggers the shutdown sequence at application exit
|
||||
std::atexit(ShutdownSequence);
|
||||
signal(SIGINT, [](int) { ShutdownSequence(); });
|
||||
signal(SIGTERM, [](int) { ShutdownSequence(); });
|
||||
|
||||
//Create all the objects we need to run our service:
|
||||
Game::logger = SetupLogger();
|
||||
|
@ -100,10 +100,8 @@ int main(int argc, char** argv) {
|
||||
// Triggers the shutdown sequence at application exit
|
||||
std::atexit(WorldShutdownSequence);
|
||||
|
||||
signal(SIGINT, [](int)
|
||||
{
|
||||
WorldShutdownSequence();
|
||||
});
|
||||
signal(SIGINT, [](int){ WorldShutdownSequence(); });
|
||||
signal(SIGTERM, [](int){ WorldShutdownSequence(); });
|
||||
|
||||
int zoneID = 1000;
|
||||
int cloneID = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user