| 774 | } |
| 775 | |
| 776 | memory::MachinePageCount incrementPrefetchPages(int64_t pages) { |
| 777 | // The counter is unsigned and the increment is signed. |
| 778 | return prefetchPages_.fetch_add(pages) + pages; |
| 779 | } |
| 780 | |
| 781 | SsdCache* ssdCache() const { |
| 782 | return ssdCache_.get(); |
no outgoing calls