aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lanes.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lanes.lua b/src/lanes.lua
index ec5a4e4..5b0b7a7 100644
--- a/src/lanes.lua
+++ b/src/lanes.lua
@@ -429,7 +429,7 @@ if first_time then
429 -- We let the timer lane be a "free running" thread; no handle to it 429 -- We let the timer lane be a "free running" thread; no handle to it
430 -- remains. 430 -- remains.
431 -- 431 --
432 gen( "io,package", { priority=max_prio}, function() 432 gen( "*", { priority=max_prio}, function() -- "*" instead of "io,package" for LuaJIT compatibility...
433 set_debug_threadname( "LanesTimer") 433 set_debug_threadname( "LanesTimer")
434 while true do 434 while true do
435 local next_wakeup= check_timers() 435 local next_wakeup= check_timers()