runtime: make channels work in interrupts

This commit is contained in:
Jaden Weiss
2020-05-29 23:46:58 -04:00
committed by Ron Evans
parent aa3481e06a
commit a4f3457747
13 changed files with 232 additions and 33 deletions
+8
View File
@@ -0,0 +1,8 @@
// +build !tinygo.riscv
// +build !cortexm
package runtime
func waitForEvents() {
runtimePanic("deadlocked: no event source")
}