We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37fd4dc commit 38a79e1Copy full SHA for 38a79e1
common/fdlimit/fdlimit_freebsd.go common/fdlimit/fdlimit_bsd.gocommon/fdlimit/fdlimit_freebsd.go renamed to common/fdlimit/fdlimit_bsd.go
@@ -14,15 +14,15 @@
14
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16
17
-//go:build freebsd
18
-// +build freebsd
+//go:build freebsd || dragonfly
+// +build freebsd dragonfly
19
20
package fdlimit
21
22
import "syscall"
23
24
// This file is largely identical to fdlimit_unix.go,
25
-// but Rlimit fields have type int64 on FreeBSD so it needs
+// but Rlimit fields have type int64 on *BSD so it needs
26
// an extra conversion.
27
28
// Raise tries to maximize the file descriptor allowance of this process
0 commit comments