| 254 | } |
| 255 | |
| 256 | void DoInit() { |
| 257 | base::subtle::Release_Store(reinterpret_cast<AtomicWord*>(&g_contention_stacks), |
| 258 | reinterpret_cast<uintptr_t>(new ContentionStacks())); |
| 259 | base::subtle::Release_Store(reinterpret_cast<AtomicWord*>(&g_contended_cycles), |
| 260 | reinterpret_cast<uintptr_t>(new LongAdder())); |
| 261 | } |
| 262 | |
| 263 | } // anonymous namespace |
| 264 |
nothing calls this directly
no test coverage detected