-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
std: small sys refactor
#149930
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
std: small sys refactor
#149930
Conversation
|
r? @ChrisDenton rustbot has assigned @ChrisDenton. Use |
|
lgtm @bors r+ |
|
@bors rollup=iffy |
…Denton std: small `sys` refactor Part of rust-lang#117276 The large number of files changed just results from the need to update a lot of imports. Actually this PR only: * combines the two definitions of `RawOsError` in `sys::pal` into one in `sys::io` * moves `FULL_BACKTRACE_DEFAULT` from `sys::pal` to `sys::backtrace` * moves the `FromInner`/`IntoInner`/... traits into `sys` (in preparation for removing `sys_common` entirely)
…uwer Rollup of 5 pull requests Successful merges: - #148755 (Constify `DropGuard::dismiss` and trait impls) - #148825 (Add SystemTime::{MIN, MAX}) - #149894 (Update to mdbook 0.5) - #149930 (std: small `sys` refactor) - #149949 (Cleanup of attribute parsing errors) r? `@ghost` `@rustbot` modify labels: rollup
5d83454 to
a3df118
Compare
std: small `sys` refactor try-job: dist-various-*
This comment has been minimized.
This comment has been minimized.
|
☔ The latest upstream changes (presumably #149999) made this pull request unmergeable. Please resolve the merge conflicts. |
... and remove the `#[doc(hidden)]` in favour of making them `pub(crate)`.
2d27400 to
33409da
Compare
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
|
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 0160933 (parent) -> 21ff67d (this PR) Test differencesShow 1174 test diffs1174 doctest diffs were found. These are ignored, as they are noisy. Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard 21ff67df15329dd7548ccba54b6c6ae9a562124f --output-dir test-dashboardAnd then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
|
Finished benchmarking commit (21ff67d): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResults (primary -8.2%, secondary -5.2%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 480.115s -> 479.832s (-0.06%) |
Part of #117276
The large number of files changed just results from the need to update a lot of imports. Actually this PR only:
RawOsErrorinsys::palinto one insys::ioFULL_BACKTRACE_DEFAULTfromsys::paltosys::backtraceFromInner/IntoInner/... traits intosys(in preparation for removingsys_commonentirely)