| 50 | } |
| 51 | |
| 52 | void Kernel::Launch(KernelContext* ctx) const { |
| 53 | SyncVmModeGuard guard(SyncVmMode::kEnable); |
| 54 | ctx->WillForward(ctx, this); |
| 55 | Forward(ctx); |
| 56 | ctx->DidForward(ctx, this); |
| 57 | } |
| 58 | |
| 59 | void Kernel::Forward(KernelContext* ctx) const { |
| 60 | ctx->WillForwardHeader(ctx, this); |
no test coverage detected