Revert D65324129: update platform010 & platform010-aarch64 symlinks
Some checks are pending
ci / Check (push) Waiting to run
ci / Test Suite (push) Waiting to run
ci / Clippy (push) Waiting to run

Differential Revision:
D65324129

Original commit changeset: 8266029f01dc

Original Phabricator Diff: D65324129

fbshipit-source-id: b4f909750fa65b4f549a2d638743896c28e988e4
This commit is contained in:
Cameron Pickett 2024-11-13 16:05:04 -08:00 committed by Facebook GitHub Bot
parent 0bc6f9ad21
commit 476ec158d6
3 changed files with 0 additions and 5 deletions

View file

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

View file

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