diff options
author | edef <edef@unfathomable.blue> | 2022-07-31 02:56:13 +0000 |
---|---|---|
committer | edef <edef@unfathomable.blue> | 2022-07-31 02:56:13 +0000 |
commit | c88c597399edd095cae6ab38c1830d2c8f07102f (patch) | |
tree | 84560d6029b5768ac0323643b368fbfdb2a485b4 | |
parent | 5aa1fbb66a02c2c8f41fc97aad434e4a38c9e2a0 (diff) | |
download | unf-legacy-c88c597399edd095cae6ab38c1830d2c8f07102f.tar.zst |
ripple/minitrace: drop redundant TODO
map_files reading is already implemented ^_^ Change-Id: I4b56dbb7d8100ee6802e81061174358290ab3201
-rw-r--r-- | ripple/minitrace/src/main.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ripple/minitrace/src/main.rs b/ripple/minitrace/src/main.rs index 3675d08..7053d22 100644 --- a/ripple/minitrace/src/main.rs +++ b/ripple/minitrace/src/main.rs @@ -139,9 +139,6 @@ impl Process { let pid = self.tgid.as_pid(); let contents = fs::read_to_string(format!("/proc/{pid}/maps"))?; - // TODO(edef): consult /proc/$pid/map_files/* for pathnames, since /proc/$pid/maps is unreliable with odd paths - // we'll want to verify the two against each other, just to be sure they're congruent - let mut mappings = contents .lines() .map(maps_file::parse_mapping_line) |