This website requires JavaScript.
Explore
Help
Sign in
mirror
/
galene
Watch
1
Fork
You've already forked galene
0
mirror of
https://github.com/jech/galene.git
synced
2024-11-10 02:35:58 +01:00
Code
Activity
123d51e011
galene
/
limit
/
limit.go
8 lines
87 B
Go
Raw
Normal View
History
Unescape
Escape
Don't attempt to set file descriptor limit. Recent versions of Go do it at startup, so only print a warning if the limit is too low.
2024-05-27 00:02:31 +02:00
//go:build !unix
Increase file descriptor limit at startup.
2021-07-29 14:26:41 +02:00
package
limit
Don't attempt to set file descriptor limit. Recent versions of Go do it at startup, so only print a warning if the limit is too low.
2024-05-27 00:02:31 +02:00
func
Nofile
(
)
(
uint64
,
error
)
{
return
0xFFFF
,
nil
Increase file descriptor limit at startup.
2021-07-29 14:26:41 +02:00
}
Copy permalink