wa-lang.org/wazero@v1.0.2/imports/wasi_snapshot_preview1/sched.go (about) 1 package wasi_snapshot_preview1 2 3 const functionSchedYield = "sched_yield" 4 5 // schedYield is the WASI function named functionSchedYield which temporarily 6 // yields execution of the calling thread. 7 // 8 // See https://github.com/WebAssembly/WASI/blob/snapshot-01/phases/snapshot/docs.md#-sched_yield---errno 9 var schedYield = stubFunction(functionSchedYield, nil, nil)