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//! This struct represents a kernel thread, and acts as a namespace for concurrency
2//! primitives that operate on kernel threads. For concurrency primitives that support
3//! both evented I/O and async I/O, see the respective names in the top level std namespace.
1//! This struct represents a kernel thread, and acts as a namespace for
2//! concurrency primitives that operate on kernel threads. For concurrency
3//! primitives that interact with the I/O interface, see `std.Io`.
44
5const std = @import("std.zig");
65const builtin = @import("builtin");
7const math = std.math;
8const assert = std.debug.assert;
96const target = builtin.target;
107const native_os = builtin.os.tag;
8
9const std = @import("std.zig");
10const math = std.math;
11const assert = std.debug.assert;
1112const posix = std.posix;
1213const windows = std.os.windows;
1314const testing = std.testing;