| 2325 | _IRQL_requires_same_ |
| 2326 | _IRQL_requires_min_(DISPATCH_LEVEL) |
| 2327 | static VMM_STATUS ExceptionOrNmiHandler(__inout PRIVATE_VM_DATA* Private, __inout GUEST_CONTEXT* Context, unsigned long long Rip, __inout_opt bool& RepeatInstruction) |
| 2328 | { |
| 2329 | UNREFERENCED_PARAMETER(Private); |
| 2330 | UNREFERENCED_PARAMETER(Context); |
| 2331 | UNREFERENCED_PARAMETER(Rip); |
| 2332 | UNREFERENCED_PARAMETER(RepeatInstruction); |
| 2333 | |
| 2334 | return VMM_STATUS::VMM_CONTINUE; |
| 2335 | } |
| 2336 | |
| 2337 | _IRQL_requires_same_ |
| 2338 | _IRQL_requires_min_(DISPATCH_LEVEL) |
nothing calls this directly
no outgoing calls
no test coverage detected