mirror of
https://github.com/jech/galene.git
synced 2024-11-09 02:05:59 +01:00
90a0a2e318
Recent versions of Go do it at startup, so only print a warning if the limit is too low.
7 lines
87 B
Go
7 lines
87 B
Go
//go:build !unix
|
|
|
|
package limit
|
|
|
|
func Nofile() (uint64, error) {
|
|
return 0xFFFF, nil
|
|
}
|