blob: aea31dbcb1f3820ee801f9e23c99a8136a1fcfb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
local t = require 'libthreads'
local m = t.Mutex()
local c = t.Condition()
print(string.format('| main thread mutex: 0x%x', m:id()))
print(string.format('| main thread condition: 0x%x', c:id()))
local code = string.format([[
local t = require 'libthreads'
local c = t.Condition(%d)
print('|| hello from thread')
print(string.format('|| thread condition: 0x%%x', c:id()))
print('|| doing some stuff in thread...')
local x = 0
for i=1,10000 do
for i=1,10000 do
x = x + math.sin(i)
end
x = x / 10000
end
print(string.format('|| ...ok (x=%%f)', x))
c:signal()
]], c:id())
print(code)
local thread = t.Thread(code)
print('| waiting for thread...')
m:lock()
c:wait(m)
print('| thread finished!')
thread:free()
m:free()
c:free()
print('| done')
|