mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
b8fe75a9dd
This adds support for enabling and listening to signals on Linux and MacOS.
8 lines
197 B
Go
8 lines
197 B
Go
//go:build !tinygo.riscv && !cortexm && !(linux && !baremetal && !tinygo.wasm && !nintendoswitch) && !darwin
|
|
|
|
package runtime
|
|
|
|
func waitForEvents() {
|
|
runtimePanic("deadlocked: no event source")
|
|
}
|