| 68 | return cached_allocator.free_page_num(); |
| 69 | } |
| 70 | static ::bvar::Stat get_hit_summary(void*) { |
| 71 | auto summary = cached_allocator.cache_hit_summary(); |
| 72 | return ::bvar::Stat {summary.sum, static_cast<ssize_t>(summary.num)}; |
| 73 | } |
| 74 | }; |
| 75 | static ::bvar::PassiveStatus<size_t> pending_size { |
| 76 | "test-babylon-pending", S::get_pending_size, nullptr}; |
nothing calls this directly
no test coverage detected