Skip to content

Commit ebf6810

Browse files
David Tolnaymeta-codesync[bot]
authored andcommitted
Update procfs from 0.15.1 to 0.16.0
Summary: Release notes: https://github.com/eminence/procfs/releases/tag/v0.16.0 Reviewed By: ship-it-ship-it Differential Revision: D94524485 fbshipit-source-id: 597621d260fbbf12c6086e2136d0c867de9196b7
1 parent fb59c1c commit ebf6810

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

reverie-ptrace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ nix = { version = "0.30.1", features = ["dir", "event", "hostname", "inotify", "
2323
num-traits = { version = "0.2.19", default-features = false }
2424
paste = "1.0.14"
2525
perf-event-open-sys = "5.0"
26-
procfs = "0.15.1"
26+
procfs = "0.16.0"
2727
raw-cpuid = "10.7.0"
2828
reverie = { version = "0.1.0", path = "../reverie" }
2929
safeptrace = { version = "0.1.0", path = "../safeptrace", features = ["memory", "notifier"] }

reverie-ptrace/src/debug.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ pub fn show_fault_context(task: &Stopped, sig: signal::Signal) {
143143
.map_or_else(
144144
|_| Vec::new(),
145145
|p| match p.maps() {
146-
Ok(maps) => maps.memory_maps,
146+
Ok(maps) => maps.0,
147147
Err(_) => Vec::new(),
148148
},
149149
)

reverie-ptrace/src/vdso.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fn vdso_get_symbols_info() -> HashMap<&'static str, (u64, usize)> {
205205
.map_or_else(
206206
|_| Vec::new(),
207207
|p| match p.maps() {
208-
Ok(maps) => maps.memory_maps,
208+
Ok(maps) => maps.0,
209209
Err(_) => Vec::new(),
210210
},
211211
)
@@ -251,7 +251,7 @@ where
251251
.map_or_else(
252252
|_| Vec::new(),
253253
|p| match p.maps() {
254-
Ok(maps) => maps.memory_maps,
254+
Ok(maps) => maps.0,
255255
Err(_) => Vec::new(),
256256
},
257257
)
@@ -317,7 +317,7 @@ mod tests {
317317
.map_or_else(
318318
|_| Vec::new(),
319319
|p| match p.maps() {
320-
Ok(maps) => maps.memory_maps,
320+
Ok(maps) => maps.0,
321321
Err(_) => Vec::new(),
322322
},
323323
)

reverie/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ memmap2 = "0.9.5"
2121
never-say-never = "6"
2222
nix = { version = "0.30.1", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }
2323
object = { version = "0.36.7", features = ["read", "write"] }
24-
procfs = "0.15.1"
24+
procfs = "0.16.0"
2525
raw-cpuid = "10.7.0"
2626
reverie-process = { version = "0.1.0", path = "../reverie-process" }
2727
reverie-syscalls = { version = "0.1.0", path = "../reverie-syscalls" }

0 commit comments

Comments
 (0)