Skip to content

Commit

Permalink
update platform010 & platform010-aarch64 symlinks
Browse files Browse the repository at this point in the history
Summary: Upgrade to 1.82.0 with the minimal set of changes to keep everything building.

Reviewed By: dtolnay

Differential Revision: D65324129

fbshipit-source-id: 8266029f01dcc80dd78c169286b08707f36fc761
  • Loading branch information
capickett authored and facebook-github-bot committed Nov 13, 2024
1 parent 1bfb484 commit 0bc6f9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions reverie-examples/chaos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ impl Tool for ChaosTool {
syscall.display(&memory),
);

#[allow(unreachable_code)]
return guest.tail_inject(syscall).await;
}

Expand Down Expand Up @@ -153,6 +154,7 @@ impl Tool for ChaosTool {
count,
syscall.display(&memory),
);
#[allow(unreachable_code)]
return guest.tail_inject(x).await;
}
};
Expand Down
2 changes: 2 additions & 0 deletions reverie-examples/chunky_print.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ impl Tool for ChunkyPrintLocal {
" [chunky_print] letting through write on redirected stdout, {} bytes.",
w.len()
);
#[allow(unreachable_code)]
return guest.tail_inject(call).await;
}
Which::Stdout
Expand All @@ -236,6 +237,7 @@ impl Tool for ChunkyPrintLocal {
" [chunky_print] letting through write on redirected stderr, {} bytes.",
w.len()
);
#[allow(unreachable_code)]
return guest.tail_inject(call).await;
}
Which::Stderr
Expand Down
1 change: 1 addition & 0 deletions reverie-ptrace/src/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1548,6 +1548,7 @@ impl<L: Tool + 'static> TracedTask<L> {
);
}
Wait::Exited(_pid, exit_status) => {
#[allow(unreachable_code)]
break self.exit(exit_status).await;
}
}
Expand Down

0 comments on commit 0bc6f9a

Please sign in to comment.