Files
tinygo/src/runtime/metrics.go
T
Ayke van Laethem a93f0ed12a all: Go 1.21 support
2023-08-04 11:59:11 +02:00

11 lines
347 B
Go

package runtime
// Implementation of functions needed by runtime/metrics.
// Mostly just dummy implementations: we don't currently use any of these
// metrics.
//go:linkname godebug_registerMetric internal/godebug.registerMetric
func godebug_registerMetric(name string, read func() uint64) {
// Dummy function for compatibility with Go 1.21.
}