Disabled garbage collection

This commit is contained in:
2024-07-17 22:28:06 +02:00
parent f617e115cd
commit 6e3cc26092

7
src/build/config/gc.go Normal file
View File

@ -0,0 +1,7 @@
package config
import "runtime/debug"
func init() {
debug.SetGCPercent(-1)
}