| 21 | : IsWine {IsWine} {} |
| 22 | |
| 23 | void MarkRange(uint64_t Start, uint64_t Length) { |
| 24 | std::unique_lock Lock {OvercommitIntervalsMutex}; |
| 25 | OvercommitIntervals.Insert({Start, Start + Length}); |
| 26 | } |
| 27 | |
| 28 | void UnmarkRange(uint64_t Start, uint64_t Length) { |
| 29 | std::unique_lock Lock {OvercommitIntervalsMutex}; |
no test coverage detected