upgrade net (#5490)

* upgrade net

* add some missing crypto and os API (#5488)

* add missing crypto API

* gofmt crypto/tls/common.go

* pull new net with unixsock formatted

* update net to latest main
This commit is contained in:
Pat Whittingslow
2026-07-07 05:40:36 -03:00
committed by GitHub
parent 311c071ae6
commit 4adc661197
6 changed files with 298 additions and 6 deletions
+11
View File
@@ -14,3 +14,14 @@ func NumGoroutine() int {
func Breakpoint() {
panic("Breakpoint not supported")
}
// Stub for SetBlockProfileRate, does not do anything. TinyGo has no block
// profiler.
func SetBlockProfileRate(rate int) {
}
// Stub for SetMutexProfileFraction, does not do anything and always reports the
// previous rate as 0. TinyGo has no mutex profiler.
func SetMutexProfileFraction(rate int) int {
return 0
}