mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-03-20 21:39:30 +00:00
8 lines
130 B
Go
8 lines
130 B
Go
package libbox
|
|
|
|
import "runtime/debug"
|
|
|
|
func SetMemoryLimit() {
|
|
debug.SetGCPercent(10)
|
|
debug.SetMemoryLimit(30 * 1024 * 1024)
|
|
}
|