Skip to content

Commit

Permalink
Revert D65324129: update platform010 & platform010-aarch64 symlinks
Browse files Browse the repository at this point in the history
Differential Revision:
D65324129

Original commit changeset: 8266029f01dc

Original Phabricator Diff: D65324129

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

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

Expand Down Expand Up @@ -154,7 +153,6 @@ impl Tool for ChaosTool {
count,
syscall.display(&memory),
);
#[allow(unreachable_code)]
return guest.tail_inject(x).await;
}
};
Expand Down
2 changes: 0 additions & 2 deletions reverie-examples/chunky_print.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 0 additions & 1 deletion reverie-ptrace/src/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,6 @@ 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 476ec15

Please sign in to comment.