| 2087 | _IRQL_requires_same_ |
| 2088 | _IRQL_requires_min_(DISPATCH_LEVEL) |
| 2089 | static VMM_STATUS EmptyHandler(__inout PRIVATE_VM_DATA* Private, __inout GUEST_CONTEXT* Context, unsigned long long Rip, __inout_opt bool& RepeatInstruction) |
| 2090 | { |
| 2091 | UNREFERENCED_PARAMETER(Private); |
| 2092 | UNREFERENCED_PARAMETER(Context); |
| 2093 | UNREFERENCED_PARAMETER(Rip); |
| 2094 | UNREFERENCED_PARAMETER(RepeatInstruction); |
| 2095 | |
| 2096 | __debugbreak(); |
| 2097 | |
| 2098 | return VMM_STATUS::VMM_CONTINUE; |
| 2099 | } |
| 2100 | |
| 2101 | _IRQL_requires_same_ |
| 2102 | _IRQL_requires_min_(DISPATCH_LEVEL) |
nothing calls this directly
no outgoing calls
no test coverage detected