mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-19 19:10:37 +03:00
11 lines
149 B
Go
11 lines
149 B
Go
//go:build darwin
|
|
|
|
package libbox
|
|
|
|
import "runtime/debug"
|
|
|
|
func SetMemoryLimit() {
|
|
debug.SetGCPercent(10)
|
|
debug.SetMemoryLimit(30 * 1024 * 1024)
|
|
}
|