remove logging in hot path

This commit is contained in:
nmzik
2026-08-18 03:53:43 +02:00
parent 3a7cd93765
commit af931d73c7
-5
View File
@@ -271,9 +271,6 @@ int KYTY_SYSV_ABI KernelCreateSema(KernelSema* sem, const char* name, uint32_t a
*sem = new KernelSemaPrivate(std::string(name), fifo, init, max);
LOGF("\t Semaphore create: %s, ptr=0x%016" PRIx64 ", init=%d, max=%d\n", name,
reinterpret_cast<uint64_t>(*sem), init, max);
return OK;
}
@@ -316,8 +313,6 @@ int KYTY_SYSV_ABI KernelPollSema(KernelSema sem, int need) {
return KERNEL_ERROR_ESRCH;
}
LOGF("\t Semaphore poll: %s, %d\n", sem->GetName().c_str(), need);
auto result = sem->Poll(need);
int ret = OK;