blob: f1487e3969cee03891ff2458380bcc684e6f34a0 (
plain)
1
2
3
4
5
6
7
|
//go:build !tinygo.riscv && !cortexm && !(linux && !baremetal && !tinygo.wasm && !nintendoswitch) && !darwin
package runtime
func waitForEvents() {
runtimePanic("deadlocked: no event source")
}
|