| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/devel/ice37/files/ |
Upload File : |
--- cpp/src/Ice/ThreadPool.cpp.orig 2021-06-21 14:44:58 UTC
+++ cpp/src/Ice/ThreadPool.cpp
@@ -17,6 +17,10 @@
# include <Ice/StringConverter.h>
#endif
+#if defined(__FreeBSD__)
+# include <sys/sysctl.h>
+#endif
+
using namespace std;
using namespace Ice;
using namespace Ice::Instrumentation;
@@ -303,8 +307,8 @@ IceInternal::ThreadPool::ThreadPool(const InstancePtr&
int nProcessors = sysInfo.dwNumberOfProcessors;
# elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
static int ncpu[2] = { CTL_HW, HW_NCPU };
- size_t sz = sizeof(nProcessors);
int nProcessors;
+ size_t sz = sizeof(nProcessors);
if(sysctl(ncpu, 2, &nProcessors, &sz, 0, 0) == -1)
{
nProcessors = 1;