mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
14 lines
178 B
Go
14 lines
178 B
Go
|
|
// +build !linux,!darwin
|
||
|
|
|
||
|
|
package utils
|
||
|
|
|
||
|
|
// set resource limit
|
||
|
|
func SetRLimit(limit uint64) error {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// set best resource limit value
|
||
|
|
func SetSuitableRLimit() {
|
||
|
|
|
||
|
|
}
|