mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
std.Thread: update doc comments
This commit is contained in:
parent
eb038ffbc1
commit
7096e66ca9
@ -1,13 +1,14 @@
|
|||||||
//! This struct represents a kernel thread, and acts as a namespace for concurrency
|
//! This struct represents a kernel thread, and acts as a namespace for
|
||||||
//! primitives that operate on kernel threads. For concurrency primitives that support
|
//! concurrency primitives that operate on kernel threads. For concurrency
|
||||||
//! both evented I/O and async I/O, see the respective names in the top level std namespace.
|
//! primitives that interact with the I/O interface, see `std.Io`.
|
||||||
|
|
||||||
const std = @import("std.zig");
|
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
const math = std.math;
|
|
||||||
const assert = std.debug.assert;
|
|
||||||
const target = builtin.target;
|
const target = builtin.target;
|
||||||
const native_os = builtin.os.tag;
|
const native_os = builtin.os.tag;
|
||||||
|
|
||||||
|
const std = @import("std.zig");
|
||||||
|
const math = std.math;
|
||||||
|
const assert = std.debug.assert;
|
||||||
const posix = std.posix;
|
const posix = std.posix;
|
||||||
const windows = std.os.windows;
|
const windows = std.os.windows;
|
||||||
const testing = std.testing;
|
const testing = std.testing;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user