aboutsummaryrefslogtreecommitdiff
path: root/library/lullaby
diff options
context:
space:
mode:
authorame <[email protected]>2025-11-14 02:06:22 -0600
committerame <[email protected]>2025-11-14 02:06:22 -0600
commita0e9b343216b2062134b86521a74286e10703015 (patch)
tree62571f63c0e2773c719b9f4de8d9b583468789ac /library/lullaby
parent5d88c4a2b80060290467d84033082f3af0c333b2 (diff)
sleep and thread fixes
Diffstat (limited to 'library/lullaby')
-rw-r--r--library/lullaby/thread.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/lullaby/thread.lua b/library/lullaby/thread.lua
index 41444ff..43e897d 100644
--- a/library/lullaby/thread.lua
+++ b/library/lullaby/thread.lua
@@ -109,4 +109,8 @@ function thread.mutex() end
---@param N integer
function thread.usleep(N) end
+---puts the thread to sleep for N seconds
+---@param N number
+function thread.sleep(N) end
+
return thread