Disabled garbage collection

This commit is contained in:
Eduard Urbach 2024-07-17 22:28:06 +02:00
parent f617e115cd
commit 6e3cc26092
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

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

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