langref: Update usage of Thread.spawn()

This commit is contained in:
LemonBoy 2021-02-28 17:01:30 +01:00
parent 566adc2510
commit d3d3e55fae

View File

@ -933,8 +933,8 @@ const assert = std.debug.assert;
threadlocal var x: i32 = 1234; threadlocal var x: i32 = 1234;
test "thread local storage" { test "thread local storage" {
const thread1 = try std.Thread.spawn({}, testTls); const thread1 = try std.Thread.spawn(testTls, {});
const thread2 = try std.Thread.spawn({}, testTls); const thread2 = try std.Thread.spawn(testTls, {});
testTls({}); testTls({});
thread1.wait(); thread1.wait();
thread2.wait(); thread2.wait();