authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-11-21 16:42:01-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-11-21 19:54:41-08:00
log7096e66ca9b7b1e4dc7d6d5d5bf1e6833f1be039
treecc1d5133df8a527a05de09749ead7f08dd846c4a
parenteb038ffbc1fb2eb936439127df8acf9b9dc080d0

std.Thread: update doc comments


1 files changed, 7 insertions(+), 6 deletions(-)

lib/std/Thread.zig+7-6
...@@ -1,13 +1,14 @@...@@ -1,13 +1,14 @@
1//! This struct represents a kernel thread, and acts as a namespace for concurrency1//! This struct represents a kernel thread, and acts as a namespace for
2//! primitives that operate on kernel threads. For concurrency primitives that support2//! concurrency primitives that operate on kernel threads. For concurrency
3//! both evented I/O and async I/O, see the respective names in the top level std namespace.3//! primitives that interact with the I/O interface, see `std.Io`.
44
5const std = @import("std.zig");
6const builtin = @import("builtin");5const builtin = @import("builtin");
7const math = std.math;
8const assert = std.debug.assert;
9const target = builtin.target;6const target = builtin.target;
10const native_os = builtin.os.tag;7const native_os = builtin.os.tag;
8
9const std = @import("std.zig");
10const math = std.math;
11const assert = std.debug.assert;
11const posix = std.posix;12const posix = std.posix;
12const windows = std.os.windows;13const windows = std.os.windows;
13const testing = std.testing;14const testing = std.testing;