| 933 | } |
| 934 | |
| 935 | void BTCpu64NotifyMemoryDirty(void* Address, SIZE_T Size) { |
| 936 | if (!InvalidationTracker || !GetCPUArea().ThreadState()) { |
| 937 | return; |
| 938 | } |
| 939 | |
| 940 | std::scoped_lock Lock(ThreadCreationMutex); |
| 941 | InvalidationTracker->InvalidateAlignedInterval(reinterpret_cast<uint64_t>(Address), static_cast<uint64_t>(Size), false); |
| 942 | } |
| 943 | |
| 944 | void BTCpu64NotifyReadFile(HANDLE Handle, void* Address, SIZE_T Size, BOOL After, NTSTATUS Status) {} |
| 945 |
nothing calls this directly
no test coverage detected