mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_posix: Run signal handlers in the startup thread
This commit is contained in:
parent
aa20355fa2
commit
89f110bbf2
1 changed files with 13 additions and 7 deletions
|
@ -130,22 +130,28 @@ if have_signal then
|
||||||
module:add_timer(0, function ()
|
module:add_timer(0, function ()
|
||||||
signal.signal("SIGTERM", function ()
|
signal.signal("SIGTERM", function ()
|
||||||
module:log("warn", "Received SIGTERM");
|
module:log("warn", "Received SIGTERM");
|
||||||
prosody.unlock_globals();
|
prosody.main_thread:run(function ()
|
||||||
prosody.shutdown("Received SIGTERM");
|
prosody.unlock_globals();
|
||||||
prosody.lock_globals();
|
prosody.shutdown("Received SIGTERM");
|
||||||
|
prosody.lock_globals();
|
||||||
|
end);
|
||||||
end);
|
end);
|
||||||
|
|
||||||
signal.signal("SIGHUP", function ()
|
signal.signal("SIGHUP", function ()
|
||||||
module:log("info", "Received SIGHUP");
|
module:log("info", "Received SIGHUP");
|
||||||
prosody.reload_config();
|
prosody.main_thread:run(function ()
|
||||||
|
prosody.reload_config();
|
||||||
|
end);
|
||||||
-- this also reloads logging
|
-- this also reloads logging
|
||||||
end);
|
end);
|
||||||
|
|
||||||
signal.signal("SIGINT", function ()
|
signal.signal("SIGINT", function ()
|
||||||
module:log("info", "Received SIGINT");
|
module:log("info", "Received SIGINT");
|
||||||
prosody.unlock_globals();
|
prosody.main_thread:run(function ()
|
||||||
prosody.shutdown("Received SIGINT");
|
prosody.unlock_globals();
|
||||||
prosody.lock_globals();
|
prosody.shutdown("Received SIGINT");
|
||||||
|
prosody.lock_globals();
|
||||||
|
end);
|
||||||
end);
|
end);
|
||||||
|
|
||||||
signal.signal("SIGUSR1", function ()
|
signal.signal("SIGUSR1", function ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue