Skip to documentation
SLOP

tiny.simd.nanoSleep

Reference tiny.simd nanoSleep

Defined in thread.wait.

Called byCallsNo direct callstest sourcelib.simd.src.thread.waittest: Highway wait word blocks until ...thread.waitnanoSleep
Static calls · unresolved targets: 0 · external targets: 2.

Source

Source: lib/simd/src/thread/wait.zig:6

zig
pub fn nanoSleep(nanoseconds: u64) bool {    if (!sys.time.supportsAwakeClock()) return false;    sys.time.sleepNanoseconds(nanoseconds);    return true;}

Source: lib/simd/src/root.zig:116

zig
pub const nanoSleep = thread.nanoSleep;

Also reachable as

thread.nanoSleep.

Audit

Definitions1
Public names3
Members0
Version26.7.0
Revisiondaab053ee433