diff options
Diffstat (limited to 'src/syscall/rlimit_stub.go')
-rw-r--r-- | src/syscall/rlimit_stub.go | 10 |
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 0000000..7daa935 --- /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 unix && !darwin + +package syscall + +// adjustFileLimit adds per-OS limitations on the Rlimit used for RLIMIT_NOFILE. See rlimit.go. +func adjustFileLimit(lim *Rlimit) {} |