mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
1484bb5c2c
The resulting binary is pretty big due to lacking optimizations (probably because of interfaces), so that should be fixed.
14 lines
319 B
Go
14 lines
319 B
Go
package runtime
|
|
|
|
// This file contains stub implementations for internal/poll.
|
|
|
|
//go:linkname semacquire internal/poll.runtime_Semacquire
|
|
func semacquire(sema *uint32) {
|
|
panic("todo: semacquire")
|
|
}
|
|
|
|
//go:linkname semrelease internal/poll.runtime_Semrelease
|
|
func semrelease(sema *uint32) {
|
|
panic("todo: semrelease")
|
|
}
|