mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
util.timer: Move sleep() here from util.async
This is to solve a indirect dependency issue where net.server was initialized before the config was read
This commit is contained in:
parent
57f5ea520f
commit
2fa049d2e1
2 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,5 @@
|
|||
local log = require "util.logger".init("util.async");
|
||||
local new_id = require "util.id".short;
|
||||
local timer = require "util.timer";
|
||||
|
||||
local function checkthread()
|
||||
local thread, main = coroutine.running();
|
||||
|
@ -226,16 +225,9 @@ local function ready()
|
|||
return pcall(checkthread);
|
||||
end
|
||||
|
||||
local function sleep(s)
|
||||
local wait, done = waiter();
|
||||
timer.add_task(s, done);
|
||||
wait();
|
||||
end
|
||||
|
||||
return {
|
||||
ready = ready;
|
||||
waiter = waiter;
|
||||
guarder = guarder;
|
||||
runner = runner;
|
||||
sleep = sleep;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue