mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 04:05:17 +00:00
12 lines
279 B
Go
12 lines
279 B
Go
|
//go:build !linux && !darwin && !windows
|
||
|
|
||
|
package rcmgr
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
// TODO: figure out how to get the number of file descriptors on Windows and other systems
|
||
|
func getNumFDs() int {
|
||
|
log.Warnf("cannot determine number of file descriptors on %s", runtime.GOOS)
|
||
|
return 0
|
||
|
}
|