mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
ad326fa290
Allows runnning a store node depending on node config settings.
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
|
|
}
|