Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nick Mathewson
Tor
Commits
409df19b
Commit
409df19b
authored
Sep 09, 2019
by
David Goulet
🐼
Browse files
build: The <sys/sysctl.h> is now deprecated on Linux
Closes #31673
parent
04618371
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/ticket31673
0 → 100644
View file @
409df19b
o New system requirements (build system):
- Do not include the deprecated <sys/sysctl.h> on Linux or Windows system.
Closes 31673;
src/lib/meminfo/meminfo.c
View file @
409df19b
...
...
@@ -18,9 +18,6 @@
#include
"lib/log/log.h"
#include
"lib/malloc/malloc.h"
#ifdef HAVE_SYS_SYSCTL_H
#include
<sys/sysctl.h>
#endif
#ifdef HAVE_FCNTL_H
#include
<fcntl.h>
#endif
...
...
@@ -36,6 +33,10 @@
#endif
#include
<string.h>
#if defined(HAVE_SYS_SYSCTL_H) && !defined(_WIN32) && !defined(__linux__)
#include
<sys/sysctl.h>
#endif
DISABLE_GCC_WARNING
(
aggregate
-
return
)
/** Call the platform malloc info function, and dump the results to the log at
* level <b>severity</b>. If no such function exists, do nothing. */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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