summaryrefslogtreecommitdiffstats
path: root/src/libnetdata/os/os-macos-wrappers.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/libnetdata/os/os-macos-wrappers.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libnetdata/os/os-macos-wrappers.h b/src/libnetdata/os/os-macos-wrappers.h
new file mode 100644
index 000000000..ec863c664
--- /dev/null
+++ b/src/libnetdata/os/os-macos-wrappers.h
@@ -0,0 +1,17 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#ifndef NETDATA_OS_MACOS_WRAPPERS_H
+#define NETDATA_OS_MACOS_WRAPPERS_H
+
+#include "../libnetdata.h"
+
+#if defined(OS_MACOS)
+#include <sys/sysctl.h>
+#include "byteorder.h"
+
+#define GETSYSCTL_BY_NAME(name, var) getsysctl_by_name(name, &(var), sizeof(var))
+int getsysctl_by_name(const char *name, void *ptr, size_t len);
+
+#endif
+
+#endif //NETDATA_OS_MACOS_WRAPPERS_H