spinLoop import { spinLoop } from "destack:hint"; Signal that execution is inside a short busy-wait loop. Longer waits should stop spinning and use a blocking synchronization operation. while (!ready.load()) { spinLoop(); } export declare function spinLoop(): void language/library/src/hint/hint.ds:21