aboutsummaryrefslogtreecommitdiff
path: root/xS
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2022-08-02 22:10:05 +0200
committerPřemysl Eric Janouch <p@janouch.name>2022-08-02 22:10:31 +0200
commit12382335564ff91d0647408e3a105ba0b30b03e9 (patch)
treece3c920cdd97edec881442febb6a9fb9d5556824 /xS
parent9c31fb69dfe8e2daa17990d317e860df7d163dc3 (diff)
downloadxK-12382335564ff91d0647408e3a105ba0b30b03e9.tar.gz
xK-12382335564ff91d0647408e3a105ba0b30b03e9.tar.xz
xK-12382335564ff91d0647408e3a105ba0b30b03e9.zip
hid: bump the FD limit
Diffstat (limited to 'xS')
-rw-r--r--xS/main.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/xS/main.go b/xS/main.go
index cf57b5e..40f47bc 100644
--- a/xS/main.go
+++ b/xS/main.go
@@ -3493,6 +3493,14 @@ func main() {
os.Exit(2)
}
+ // Note that this has become unnecessary since Go 1.19.
+ var limit syscall.Rlimit
+ if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limit); err == nil &&
+ limit.Cur != limit.Max {
+ limit.Cur = limit.Max
+ syscall.Setrlimit(syscall.RLIMIT_NOFILE, &limit)
+ }
+
config = make(simpleConfig)
config.loadDefaults(configTable)
if err := config.updateFromFile(); err != nil && !os.IsNotExist(err) {