mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-01-22 12:56:28 +00:00
update platform010 & platform010-aarch64 symlinks
Summary: Upgrade toolchain to 1.83.0 Reviewed By: dtolnay Differential Revision: D67041293 fbshipit-source-id: 6b8039d953e044d51ab61d3c5c4fadf442eb166b
This commit is contained in:
parent
bd319a7711
commit
4d21474ebe
3 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1548,6 +1548,7 @@ impl<L: Tool + 'static> TracedTask<L> {
|
|||
);
|
||||
}
|
||||
Wait::Exited(_pid, exit_status) => {
|
||||
#[allow(unreachable_code)]
|
||||
break self.exit(exit_status).await;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue