mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-25 12:27:24 +08:00
17 lines
274 B
Go
17 lines
274 B
Go
//go:build linux || darwin
|
|
|
|
package rcmgr
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func getNumFDs() int {
|
|
var l unix.Rlimit
|
|
if err := unix.Getrlimit(unix.RLIMIT_NOFILE, &l); err != nil {
|
|
log.Errorw("failed to get fd limit", "error", err)
|
|
return 0
|
|
}
|
|
return int(l.Cur)
|
|
}
|