mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-12-23 18:05:39 +00:00
11 lines
149 B
Go
11 lines
149 B
Go
//go:build go1.20
|
|
// +build go1.20
|
|
|
|
package mobile
|
|
|
|
import "runtime/debug"
|
|
|
|
func setMemLimitIfPossible() {
|
|
debug.SetMemoryLimit(1024 * 1024 * 40)
|
|
}
|