| 941 | } |
| 942 | |
| 943 | NTSTATUS BTCpuResetToConsistentState(EXCEPTION_POINTERS* Ptrs) { |
| 944 | if (BTCpuResetToConsistentStateImpl(Ptrs)) { |
| 945 | NtContinue(Ptrs->ContextRecord, FALSE); |
| 946 | } |
| 947 | |
| 948 | return STATUS_SUCCESS; |
| 949 | } |
| 950 | |
| 951 | void BTCpuFlushInstructionCache2(const void* Address, SIZE_T Size) { |
| 952 | std::scoped_lock Lock(ThreadCreationMutex); |
nothing calls this directly
no test coverage detected