15 lines
294 B
Go
15 lines
294 B
Go
|
// +build !windows
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
// Flimit defines the max number of watched files
|
||
|
func (s *Settings) flimit() error {
|
||
|
var rLimit syscall.Rlimit
|
||
|
rLimit.Max = uint64(s.FileLimit)
|
||
|
rLimit.Cur = uint64(s.FileLimit)
|
||
|
|
||
|
return syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit)
|
||
|
}
|