zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit d3d3e55fae2299d1ff594c77da2f1f41f44ab525 (tree)
parent 566adc2510859eaa30eb7c318260c98e712daccf
Author: LemonBoy <thatlemon@gmail.com>
Date:   Sun, 28 Feb 2021 17:01:30 +0100

langref: Update usage of Thread.spawn()

Diffstat:
Mdoc/langref.html.in | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/langref.html.in b/doc/langref.html.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();