mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-09 13:33:39 +00:00
all: add Go 1.24 support
This commit is contained in:
committed by
Ron Evans
parent
66da29e89f
commit
38e3d55e64
@@ -0,0 +1,15 @@
|
||||
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.
|
||||
}
|
||||
Reference in New Issue
Block a user