mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
prosody: Expose main thread on the 'prosody' global
To allow running things in it.
This commit is contained in:
parent
97daab1c75
commit
aa20355fa2
2 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,9 @@ read_globals = {
|
||||||
files["prosody"] = {
|
files["prosody"] = {
|
||||||
allow_defined_top = true;
|
allow_defined_top = true;
|
||||||
module = true;
|
module = true;
|
||||||
|
globals = {
|
||||||
|
"prosody";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
files["prosodyctl"] = {
|
files["prosodyctl"] = {
|
||||||
allow_defined_top = true;
|
allow_defined_top = true;
|
||||||
|
|
2
prosody
2
prosody
|
@ -54,6 +54,8 @@ local thread = async.runner();
|
||||||
|
|
||||||
thread:run(startup.prosody);
|
thread:run(startup.prosody);
|
||||||
|
|
||||||
|
prosody.main_thread = thread;
|
||||||
|
|
||||||
local function loop()
|
local function loop()
|
||||||
-- Error handler for errors that make it this far
|
-- Error handler for errors that make it this far
|
||||||
local function catch_uncaught_error(err)
|
local function catch_uncaught_error(err)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue