Files
llgo/runtime/internal/runtime/tinygogc/mutex.go
Haolan bb29e8c768 docs: add commets for gc mutex
docs: add commets for tinygo gc
2025-11-14 16:13:38 +08:00

9 lines
137 B
Go

package tinygogc
// TODO(MeteorsLiu): mutex lock for baremetal GC
type mutex struct{}
func lock(m *mutex) {}
func unlock(m *mutex) {}