CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
tqminworker.cxh
1#include "tqmthreadpool.cxh"
2#include <cx/thread/mutex.h>
3
4class TQInWorkerManager extends TQThreadPoolManager {
5 Mutex mgrlock; // one worker can run the manager at a time
6 atomic:bool needrun; // manager needs to be run ASAP
7
8 override notify;
9 override tick;
10 override pretask;
11 override stop;
12
13 factory create();
14}