| 26 | } |
| 27 | |
| 28 | void UnmarkRange(uint64_t Start, uint64_t Length) { |
| 29 | std::unique_lock Lock {OvercommitIntervalsMutex}; |
| 30 | OvercommitIntervals.Remove({Start, Start + Length}); |
| 31 | } |
| 32 | |
| 33 | bool HandleAccessViolation(uint64_t FaultAddress) { |
| 34 | std::shared_lock Lock {OvercommitIntervalsMutex}; |
no test coverage detected