diff options
Diffstat (limited to 'tests/atexit.lua')
-rw-r--r-- | tests/atexit.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/atexit.lua b/tests/atexit.lua index 9fc3070..ba10d3b 100644 --- a/tests/atexit.lua +++ b/tests/atexit.lua | |||
@@ -16,8 +16,8 @@ local g = function() | |||
16 | print "User cancellation detected!" | 16 | print "User cancellation detected!" |
17 | end | 17 | end |
18 | 18 | ||
19 | local genF = lanes.gen( "", {globals = {threadName = "mylane"}}, f) | 19 | local genF = lanes.gen( "", {name = 'auto', globals = {threadName = "mylane"}}, f) |
20 | local genG = lanes.gen( "", g) | 20 | local genG = lanes.gen( "", { name = 'auto'}, g) |
21 | 21 | ||
22 | 22 | ||
23 | -- launch a good batch of free running lanes | 23 | -- launch a good batch of free running lanes |