Performs routine cleanup following a read. Normally cleanup happens during writes. If cleanup is not observed after a sufficient number of reads, try cleaning up from the read thread.
()
| 3486 | */ |
| 3487 | |
| 3488 | void postReadCleanup() { |
| 3489 | if ((readCount.incrementAndGet() & DRAIN_THRESHOLD) == 0) { |
| 3490 | cleanUp(); |
| 3491 | } |
| 3492 | } |
| 3493 | |
| 3494 | /** |
| 3495 | * Performs routine cleanup prior to executing a write. This should be called every time a write |
no test coverage detected