mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-02 22:13:06 +00:00
19 lines
283 B
Go
19 lines
283 B
Go
//go:build linux || darwin
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func getNumFDs() int {
|
|
var l unix.Rlimit
|
|
if err := unix.Getrlimit(unix.RLIMIT_NOFILE, &l); err != nil {
|
|
fmt.Println("failed to get fd limit:" + err.Error())
|
|
return 0
|
|
}
|
|
return int(l.Cur)
|
|
}
|