| 1006 | } |
| 1007 | |
| 1008 | void BTCpuNotifyUnmapViewOfSection(void* Address, BOOL After, ULONG Status) { |
| 1009 | if (!After) { |
| 1010 | ThreadCreationMutex.lock(); |
| 1011 | InvalidationTracker->InvalidateContainingSection(reinterpret_cast<uint64_t>(Address), true); |
| 1012 | } else { |
| 1013 | ThreadCreationMutex.unlock(); |
| 1014 | } |
| 1015 | } |
| 1016 | |
| 1017 | void BTCpuNotifyReadFile(HANDLE Handle, void* Address, SIZE_T Size, BOOL After, NTSTATUS Status) {} |
| 1018 |
nothing calls this directly
no test coverage detected