This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/utils/rlimit_others.go
T
2020-07-22 22:17:53 +08:00

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() {
}