| 769 | std::string toString(bool details = true) const; |
| 770 | |
| 771 | memory::MachinePageCount incrementCachedPages(int64_t pages) { |
| 772 | // The counter is unsigned and the increment is signed. |
| 773 | return cachedPages_.fetch_add(pages) + pages; |
| 774 | } |
| 775 | |
| 776 | memory::MachinePageCount incrementPrefetchPages(int64_t pages) { |
| 777 | // The counter is unsigned and the increment is signed. |
no outgoing calls