update platform010 & platform010-aarch64 symlinks

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
This commit is contained in:
Cameron Pickett 2024-11-13 10:42:08 -08:00 committed by Facebook GitHub Bot
parent 1bfb484c40
commit 0bc6f9ad21
3 changed files with 5 additions and 0 deletions

View file

@ -111,6 +111,7 @@ impl Tool for ChaosTool {
syscall.display(&memory),
);
#[allow(unreachable_code)]
return guest.tail_inject(syscall).await;
}
@ -153,6 +154,7 @@ impl Tool for ChaosTool {
count,
syscall.display(&memory),
);
#[allow(unreachable_code)]
return guest.tail_inject(x).await;
}
};

View file

@ -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
@ -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

View file

@ -1548,6 +1548,7 @@ impl<L: Tool + 'static> TracedTask<L> {
);
}
Wait::Exited(_pid, exit_status) => {
#[allow(unreachable_code)]
break self.exit(exit_status).await;
}
}