()
| 21 | static ABC_INVALIDATION_COUNTER: AtomicU64 = AtomicU64::new(0); |
| 22 | |
| 23 | fn get_invalidation_counter() -> u64 { |
| 24 | ABC_INVALIDATION_COUNTER.load(Ordering::SeqCst) |
| 25 | } |
| 26 | |
| 27 | fn increment_invalidation_counter() { |
| 28 | ABC_INVALIDATION_COUNTER.fetch_add(1, Ordering::SeqCst); |
no test coverage detected