From 9a5b2dcee28cfe360cfd1d93289dd526a2ea50bc Mon Sep 17 00:00:00 2001 From: Mirek Fidler Date: Wed, 8 Oct 2025 08:13:48 +0200 Subject: [PATCH] .removed DLOGs --- uppsrc/Core/Cpu.cpp | 1 - uppsrc/Core/SSL/InitExit.cpp | 2 -- 2 files changed, 3 deletions(-) diff --git a/uppsrc/Core/Cpu.cpp b/uppsrc/Core/Cpu.cpp index 48faf53f2..c278eaf55 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"); } }