Skip to content

Rollup of 8 pull requests #102920

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

Closed
wants to merge 26 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3d28a1a
Warn about safety of `fetch_update`
Riolku Sep 14, 2022
2ea770d
fs::get_path solarish version.
devnexen Sep 24, 2022
2c72ea7
Stabilize map_first_last
est31 Sep 12, 2022
8bda133
Interpret EH actions properly
nbdd0121 Oct 5, 2022
b0b072d
ADD - codegen_ssa initial diags translations machinery
JhonnyBillM Oct 4, 2022
4e0de53
ADD - migrate lib.def write fatal error
JhonnyBillM Aug 25, 2022
0a2d7f8
UPDATE - LibDefWriteFailure to accept type instead of formatted string
JhonnyBillM Aug 27, 2022
086e70f
UPDATE - migrate linker.rs to new diagnostics infra
JhonnyBillM Oct 7, 2022
d9197db
UPDATE - migrate write.rs to new diagnostics infra
JhonnyBillM Aug 28, 2022
67eb01c
UPDATE - codege-ssa errors to new Diagnostic macro name
JhonnyBillM Sep 10, 2022
7548d95
UPDATE - resolve fixme and emit errors via Handler
JhonnyBillM Sep 10, 2022
0f97d4a
DELETE - unused error after PR# 100101 was merged
JhonnyBillM Sep 13, 2022
12aa84b
ADD - initial port of link.rs
JhonnyBillM Oct 3, 2022
a25f939
Address PR comments
JhonnyBillM Oct 4, 2022
13d4f27
ADD - implement IntoDiagnostic for thorin::Error wrapper
JhonnyBillM Oct 4, 2022
c1c159f
Unify tcx.constness and param env constness checks
compiler-errors Oct 9, 2022
6826028
fix #102878
TaKO8Ki Oct 10, 2022
152cd63
Report duplicate definitions in trait impls during resolution.
cjgillot Aug 10, 2022
6be5db8
Rollup merge of #100387 - cjgillot:hygiene-trait-impl, r=petrochenkov
Dylan-DPC Oct 11, 2022
9bf2e53
Rollup merge of #101727 - est31:stabilize_map_first_last, r=m-ou-se
Dylan-DPC Oct 11, 2022
3f4b987
Rollup merge of #101774 - Riolku:atomic-update-aba, r=m-ou-se
Dylan-DPC Oct 11, 2022
16914c9
Rollup merge of #102227 - devnexen:solarish_get_path, r=m-ou-se
Dylan-DPC Oct 11, 2022
4be1c94
Rollup merge of #102612 - JhonnyBillM:migrate-codegen-ssa-to-diagnost…
Dylan-DPC Oct 11, 2022
638ce35
Rollup merge of #102685 - nbdd0121:unwind, r=m-ou-se
Dylan-DPC Oct 11, 2022
18325e9
Rollup merge of #102830 - compiler-errors:constness-parity, r=fee1-dead
Dylan-DPC Oct 11, 2022
2e26805
Rollup merge of #102893 - TaKO8Ki:fix-102878, r=davidtwco
Dylan-DPC Oct 11, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions library/std/src/sys/unix/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,12 @@ impl FromRawFd for File {

impl fmt::Debug for File {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
#[cfg(any(target_os = "linux", target_os = "netbsd"))]
#[cfg(any(
target_os = "linux",
target_os = "netbsd",
target_os = "illumos",
target_os = "solaris"
))]
fn get_path(fd: c_int) -> Option<PathBuf> {
let mut p = PathBuf::from("/proc/self/fd");
p.push(&fd.to_string());
Expand Down Expand Up @@ -1227,7 +1232,9 @@ impl fmt::Debug for File {
target_os = "macos",
target_os = "vxworks",
all(target_os = "freebsd", target_arch = "x86_64"),
target_os = "netbsd"
target_os = "netbsd",
target_os = "illumos",
target_os = "solaris"
)))]
fn get_path(_fd: c_int) -> Option<PathBuf> {
// FIXME(#24570): implement this for other Unix platforms
Expand Down