We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5532427 commit 532cf27Copy full SHA for 532cf27
src/syscall/rlimit.go
@@ -8,20 +8,9 @@ package syscall
8
9
import (
10
"sync/atomic"
11
- _ "unsafe"
12
)
13
14
// origRlimitNofile, if non-nil, is the original soft RLIMIT_NOFILE.
15
-//
16
-// origRlimitNofile should be an internal detail,
17
-// but widely used packages access it using linkname.
18
-// Notable members of the hall of shame include:
19
-// - github.com/opencontainers/runc
20
21
-// Do not remove or change the type signature.
22
-// See go.dev/issue/67401.
23
24
-//go:linkname origRlimitNofile
25
var origRlimitNofile atomic.Pointer[Rlimit]
26
27
// Some systems set an artificially low soft limit on open file count, for compatibility
0 commit comments