| 28 | std::string pathname; |
| 29 | |
| 30 | ProcMap() |
| 31 | : pid(0), startAddress(0), endAddress(0), length(0), protection(0), readable(false), writeable(false), |
| 32 | executable(false), is_private(false), is_shared(false), is_ro(false), is_rw(false), is_rx(false), |
| 33 | offset(0), inode(0) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | inline bool operator==(const ProcMap &other) const |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected