CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
tqmmanual.cxh
1#include "tqmanager.cxh"
2#include <cx/thread/mutex.h>
3
4// very similar to the in-worker manager, but doesn't do any of the thread pool management
5
6class TQManualManager extends TQManager {
7 Mutex mgrlock; // one worker can run the manager at a time
8 atomic:bool needrun; // manager needs to be run ASAP
9
10 override notify;
11 override tick;
12
13 factory create();
14}