| 252 | } |
| 253 | |
| 254 | static int DispatchTickRun(void *arg) { |
| 255 | DispatchCtx_t *ctx = static_cast<DispatchCtx_t*>(arg); |
| 256 | ctx->batch_helper->DispatchBatchTask(ctx->vtid); |
| 257 | return 0; |
| 258 | } |
| 259 | |
| 260 | void BatchHelper::DispatchBatchTask(int vtid) { |
| 261 | auto &batch_infos = impl_->vtid2batch_infos[vtid]; |
nothing calls this directly
no test coverage detected