| 107 | } |
| 108 | } |
| 109 | void addThread(IThreadPoolReceiver* userData, const char* name) override { |
| 110 | threads.push_back(new Thread(this, userData)); |
| 111 | threads.back()->handle = g_network->startThread(start, threads.back(), stackSize, name); |
| 112 | } |
| 113 | void post(PThreadAction action) override { ios.post(ActionWrapper(action)); } |
| 114 | int priority() const { return pri; } |
| 115 | }; |
no test coverage detected