Disabled garbage collection

This commit is contained in:
Eduard Urbach 2024-07-17 22:28:06 +02:00
parent bdb9312743
commit 35bc57b5fd
Signed by: eduard
GPG key ID: 49226B848C78F6C8

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

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