From f050fc231650e58b3e6b75202ccf7d4b59291961 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Wed, 19 Oct 2022 14:26:18 +0200 Subject: [PATCH] make more virtual functions is BaseThread --- winixd/core/basethread.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/winixd/core/basethread.h b/winixd/core/basethread.h index b5c26ee..2813a93 100644 --- a/winixd/core/basethread.h +++ b/winixd/core/basethread.h @@ -144,12 +144,12 @@ protected: void SignalLoop(); static void * StartRoutine(void *); - bool BaseInit(); - void BaseUninit(); - bool BaseSignalReceived(); - void BaseDo(); - bool WaitForSignal(); - bool WaitForSignalSleep(time_t second); + virtual bool BaseInit(); + virtual void BaseUninit(); + virtual bool BaseSignalReceived(); + virtual void BaseDo(); + virtual bool WaitForSignal(); + virtual bool WaitForSignalSleep(time_t second); bool Lock(); void Unlock();