| 257 | class ProcMemoryReader { |
| 258 | public: |
| 259 | bool operator()(ProcMemory* stat) const { |
| 260 | return read_proc_memory(*stat); |
| 261 | }; |
| 262 | template <typename T, size_t offset> |
| 263 | static T get_field(void*) { |
| 264 | static int64_t pagesize = getpagesize(); |
nothing calls this directly
no test coverage detected