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-09 18:25:58 +01:00
Code
Activity
82de29b6d0
galene
/
limit
/
limit.go
8 lines
102 B
Go
Raw
Normal View
History
Unescape
Escape
Disable ulimit checking on non-Linux unices. The code turned out not to port to FreeBSD. Disable the check, and assume that FreeBSD admins read the docs. Thanks to Amatis-51.
2022-11-12 12:23:13 +01:00
// +build !linux
Increase file descriptor limit at startup.
2021-07-29 14:26:41 +02:00
package
limit
func
Nofile
(
desired
uint64
)
(
uint64
,
error
)
{
return
desired
,
nil
}
Copy permalink