langref: Update usage of Thread.spawn()
This commit is contained in:
@@ -933,8 +933,8 @@ const assert = std.debug.assert;
|
||||
threadlocal var x: i32 = 1234;
|
||||
|
||||
test "thread local storage" {
|
||||
const thread1 = try std.Thread.spawn({}, testTls);
|
||||
const thread2 = try std.Thread.spawn({}, testTls);
|
||||
const thread1 = try std.Thread.spawn(testTls, {});
|
||||
const thread2 = try std.Thread.spawn(testTls, {});
|
||||
testTls({});
|
||||
thread1.wait();
|
||||
thread2.wait();
|
||||
|
||||
Reference in New Issue
Block a user