summaryrefslogtreecommitdiff
path: root/net/ecal/files/patch-contrib_mma_src_linux_mma__linux.cpp
blob: 68a4b70ef2595565a74bc0684f41d77287e3cc9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--- contrib/mma/src/linux/mma_linux.cpp.orig	2024-04-26 04:43:39 UTC
+++ contrib/mma/src/linux/mma_linux.cpp
@@ -44,6 +44,13 @@
 #include <pwd.h>
 #include <unistd.h>
 
+#if defined(__FreeBSD__)
+#include <sys/types.h>
+#include <sys/sysctl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#endif
+
 #include "../include/linux/mma_linux.h"
 
 #define B_IN_KB 1024.0
@@ -632,7 +639,18 @@ int MMALinux::GetCpuCores(void)
 
 int MMALinux::GetCpuCores(void)
 {
+#if defined(__FreeBSD__)
+  static int name[2] = {CTL_HW, HW_NCPU};
+  int32_t ncpu;
+  size_t size = sizeof(ncpu);
+  if (sysctl(name, sizeof(name)/sizeof(*name), &ncpu, &size, NULL, 0)) {
+    perror("unable to determine number of CPUs");
+    abort();
+  }
+  return (int)ncpu;
+#else
   return get_nprocs();
+#endif
 }
 
 std::string MMALinux::GetOsName()