| 350 | } |
| 351 | |
| 352 | static void *DispatchRoutineRun(void *arg) { |
| 353 | co_enable_hook_sys(); |
| 354 | |
| 355 | DispatchCtx_t *ctx = static_cast<DispatchCtx_t*>(arg); |
| 356 | ctx->consumer->TaskDispatch(); |
| 357 | return nullptr; |
| 358 | } |
| 359 | |
| 360 | static void *HandleRoutineRun(void *arg) { |
| 361 | co_enable_hook_sys(); |
nothing calls this directly
no test coverage detected