| 32 | } |
| 33 | |
| 34 | void DoExecute() override { |
| 35 | SetHighestThreadPriority(); |
| 36 | |
| 37 | TContExecutor e(RealStackSize(20000)); |
| 38 | |
| 39 | e.Execute<TExecThread, &TExecThread::Dispatcher>(this); |
| 40 | } |
| 41 | |
| 42 | inline void Dispatcher(TCont* c) { |
| 43 | IJob* job; |
nothing calls this directly
no test coverage detected