diff --git a/uppsrc/Core/Cpu.cpp b/uppsrc/Core/Cpu.cpp index a4837c418..bbb1a4920 100644 --- a/uppsrc/Core/Cpu.cpp +++ b/uppsrc/Core/Cpu.cpp @@ -99,7 +99,6 @@ int CPU_Cores() mib[0] = CTL_HW; mib[1] = HW_NCPU; sysctl(mib, 2, &n, &len, NULL, 0); - n = minmax(n, 1, 256); #elif defined(PLATFORM_SOLARIS) n = minmax((int)sysconf(_SC_NPROCESSORS_ONLN), 1, 256); #else diff --git a/uppsrc/Core/SSL/InitExit.cpp b/uppsrc/Core/SSL/InitExit.cpp index 19911f950..a384eb89a 100644 --- a/uppsrc/Core/SSL/InitExit.cpp +++ b/uppsrc/Core/SSL/InitExit.cpp @@ -131,13 +131,11 @@ static void sslExitThread() void SslInitThread() { - DLOG("+++ SslInitThread"); MemoryIgnoreLeaksBlock __; if(sThreadInit || Thread::IsMain()) return; sThreadInit = true; sPrevExit = Thread::AtExit(sslExitThread); - DLOG("--- SslInitThread"); } }