aboutsummaryrefslogtreecommitdiffstats
path: root/util/async.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/async.lua')
-rw-r--r--util/async.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/util/async.lua b/util/async.lua
index 8b92c878..012cfd87 100644
--- a/util/async.lua
+++ b/util/async.lua
@@ -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;
};