Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/shims/native_lib/trace/child.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,10 @@ pub unsafe fn init_sv() -> Result<(), SvInitError> {
match init {
// The "Ok" case means that we couldn't ptrace.
Ok(e) => return Err(e),
Err(p) => {
Err(_p) => {
eprintln!(
"Supervisor process panicked!\n{p:?}\n\nTry running again without using the native-lib tracer."
"Supervisor process panicked!\n\"
Try running again without `-Zmiri-native-lib-enable-tracing`."
);
std::process::exit(1);
}
Expand Down