aboutsummaryrefslogtreecommitdiff
path: root/src/syscall/rlimit_stub.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/syscall/rlimit_stub.go')
-rw-r--r--src/syscall/rlimit_stub.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/syscall/rlimit_stub.go b/src/syscall/rlimit_stub.go
new file mode 100644
index 0000000000..e8f839dd99
--- /dev/null
+++ b/src/syscall/rlimit_stub.go
@@ -0,0 +1,10 @@
+// Copyright 2022 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+//go:build aix || dragonfly || freebsd || linux || netbsd || openbsd || solaris
+
+package syscall
+
+// adjustFileLimit adds per-OS limitations on the Rlimit used for RLIMIT_NOFILE. See rlimit.go.
+func adjustFileLimit(lim *Rlimit) {}