Uh oh!
There was an error while loading. Please reload this page.
#![deny(unsafe_op_in_unsafe_fn)] in sys/hermit - #74979
Conversation
rust-highfive
commented
Jul 31, 2020
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @joshtriplett (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
|
Dylan-DPC-zz
commented
Aug 20, 2020
maybe |
Mark-Simulacrum
commented
Aug 20, 2020
I think it's probably best to just leave this module as-is (perhaps adding a top-level allow at most). The hermit folks are the ones who can review safety comments in it well and for now it's not necessary. I can accept this with the changes reverted and an allow added instead of denys. I would guess that having the current diff available though would be helpful, so posting a link to a gist or so with the diff seems good. Thanks! |
maekawatoshiki
commented
Aug 21, 2020
This is a link to a gist with diff: https://gist.github.com/maekawatoshiki/ccd255d2e59288917ebee1fb42ba776c |
| @@ -1,5 +1,6 @@ | |||
| #![cfg(target_thread_local)] | |||
| #![unstable(feature = "thread_local_internals", issue = "none")] | |||
| #![allow(unsafe_op_in_unsafe_fn)] | |||
There was a problem hiding this comment.
Could we put these in hermit/mod.rs instead?
crlf0710
commented
Sep 18, 2020
@maekawatoshiki Ping from triage! Any updates on this? |
maekawatoshiki
commented
Sep 18, 2020
I'm a little confused about what to do next... |
crlf0710
commented
Oct 8, 2020
Triage: @maekawatoshiki I think leaving one single |
maekawatoshiki
commented
Oct 8, 2020
I removed |
Dylan-DPC-zz
commented
Oct 28, 2020
@Mark-Simulacrum this is ready for review |
Mark-Simulacrum
commented
Nov 5, 2020
@bors r+ rollup |
bors
commented
Nov 5, 2020
📌 Commit 14158f5 has been approved by |
`#![deny(unsafe_op_in_unsafe_fn)]` in sys/hermit Partial fix of rust-lang#73904. This encloses ``unsafe`` operations in ``unsafe fn`` in ``sys/hermit``. Some unsafe blocks are not well documented because some system-based functions lack documents.
`#![deny(unsafe_op_in_unsafe_fn)]` in sys/hermit Partial fix of rust-lang#73904. This encloses ``unsafe`` operations in ``unsafe fn`` in ``sys/hermit``. Some unsafe blocks are not well documented because some system-based functions lack documents.
Rollup of 15 pull requests Successful merges: - rust-lang#74979 (`#![deny(unsafe_op_in_unsafe_fn)]` in sys/hermit) - rust-lang#78006 (Use Intra-doc links for std::io::buffered) - rust-lang#78167 (Fix unreachable sub-branch detection in or-patterns) - rust-lang#78514 (Allow using 1/2/3/4 for `x.py setup` options) - rust-lang#78538 (BTreeMap: document a curious assumption in test cases) - rust-lang#78559 (Add LLVM upgrades from 7 to 10 to RELEASES.md) - rust-lang#78666 (Fix shellcheck error) - rust-lang#78705 (Print a summary of which test suite failed) - rust-lang#78726 (Add link to rust website) - rust-lang#78730 (Expand explanation of reverse_bits) - rust-lang#78760 (`deny(invalid_codeblock_attributes)` for rustc_error_codes) - rust-lang#78771 (inliner: Copy unevaluated constants only after successful inlining) - rust-lang#78794 (rustc_expand: use collect_bang helper instead of manual reimplementation) - rust-lang#78795 (The renumber pass is long gone) - rust-lang#78798 (Fixing Spelling Typos) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Partial fix of #73904.
This encloses
unsafeoperations inunsafe fninsys/hermit.Some unsafe blocks are not well documented because some system-based functions lack documents.