aboutsummaryrefslogtreecommitdiff
path: root/tests/mutex.lua
blob: d141a02202b94f9cf7c7507eb38b85acce7dcb80 (plain)
1
2
3
4
5
6
7
8
9
10
local llby = require"lullaby"

local th = llby.thread.async(function(res)
  print("start")
  os.execute("sleep 4")
  print("thread")
end)

print("outside")
th:await()