prosody: Expose main thread on the 'prosody' global

To allow running things in it.
This commit is contained in:
Kim Alvefur 2021-10-06 14:49:26 +02:00
parent 97daab1c75
commit aa20355fa2
2 changed files with 5 additions and 0 deletions

View file

@ -12,6 +12,9 @@ read_globals = {
files["prosody"] = {
allow_defined_top = true;
module = true;
globals = {
"prosody";
}
}
files["prosodyctl"] = {
allow_defined_top = true;

View file

@ -54,6 +54,8 @@ local thread = async.runner();
thread:run(startup.prosody);
prosody.main_thread = thread;
local function loop()
-- Error handler for errors that make it this far
local function catch_uncaught_error(err)