mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
16 lines
379 B
Go
16 lines
379 B
Go
package runtime
|
|
|
|
// Dummy implementation of synctest functions (we don't support synctest at the
|
|
// moment).
|
|
|
|
//go:linkname synctest_acquire internal/synctest.acquire
|
|
func synctest_acquire() any {
|
|
// Dummy: we don't support synctest.
|
|
return nil
|
|
}
|
|
|
|
//go:linkname synctest_release internal/synctest.release
|
|
func synctest_release(sg any) {
|
|
// Dummy: we don't support synctest.
|
|
}
|