sing-box/experimental/libbox/memory.go

11 lines
149 B
Go
Raw Normal View History

2023-03-15 06:56:06 +00:00
//go:build darwin
2023-03-02 05:13:12 +00:00
package libbox
import "runtime/debug"
func SetMemoryLimit() {
debug.SetGCPercent(10)
debug.SetMemoryLimit(30 * 1024 * 1024)
}