Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
p2p
go-p2p-kad-dht
Commits
da7209a6
Commit
da7209a6
authored
Feb 07, 2019
by
Steven Allen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: fix tests on freebsd
parent
8e39fcb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
nofile_test_posix.go
nofile_test_posix.go
+2
-1
No files found.
nofile_test_posix.go
View file @
da7209a6
...
...
@@ -7,5 +7,6 @@ import "syscall"
func
curFileLimit
()
uint64
{
var
n
syscall
.
Rlimit
syscall
.
Getrlimit
(
syscall
.
RLIMIT_NOFILE
,
&
n
)
return
n
.
Cur
// cast because some platforms use int64 (e.g., freebsd)
return
uint64
(
n
.
Cur
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment