| 959 | } |
| 960 | |
| 961 | void BTCpuNotifyMemoryDirty(void* Address, SIZE_T Size) { |
| 962 | std::scoped_lock Lock(ThreadCreationMutex); |
| 963 | InvalidationTracker->InvalidateAlignedInterval(reinterpret_cast<uint64_t>(Address), static_cast<uint64_t>(Size), false); |
| 964 | } |
| 965 | |
| 966 | void BTCpuNotifyMemoryAlloc(void* Address, SIZE_T Size, ULONG Type, ULONG Prot, BOOL After, ULONG Status) { |
| 967 | if (!After) { |
nothing calls this directly
no test coverage detected