1
0

cIsThread: Added the Stop() method and debugging output in Wait()

This commit is contained in:
madmaxoft
2013-08-11 19:40:15 +02:00
parent eb9d45e906
commit 2baa6634ec
2 changed files with 26 additions and 22 deletions

View File

@@ -39,6 +39,9 @@ public:
/// Starts the thread; returns without waiting for the actual start
bool Start(void);
/// Signals the thread to terminate and waits until it's finished
void Stop(void);
/// Waits for the thread to finish. Doesn't signalize the ShouldTerminate flag
bool Wait(void);
@@ -70,7 +73,6 @@ private:
}
#endif // else _WIN32
} ;