Skip to content
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

Rollup of 10 pull requests #101257

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6b68921
Change implementation of `-Z gcc-ld` and `lld-wrapper` again
petrochenkov Aug 6, 2022
d8a32dd
rustc_target: Add a compatibility layer to separate internal and user…
petrochenkov Aug 14, 2022
667eb18
rustc_target: Refactor internal linker flavors slightly
petrochenkov Aug 14, 2022
38de102
Support eager and lazy methods for providing references and values
shepmaster Jul 21, 2022
260ec93
Add `Provider::{would_be_satisfied_by_value_of,would_be_satisfied_by_…
shepmaster Jul 22, 2022
c846a2a
Make `std::os::fd` public.
sunfishcode Jun 14, 2022
09bbc42
Update asrawfd.js.
sunfishcode Jun 22, 2022
bda1262
Clarify that the `fd` module is supported on Unix and WASI.
sunfishcode Jun 30, 2022
7d80510
Re-introduce `unstable` attributes.
sunfishcode Aug 23, 2022
d7eeaf5
Use `DisplayBuffer` for socket addresses.
reitermarkus Aug 16, 2022
efd307b
Add tests for `SockAddr` `Display`.
reitermarkus Aug 19, 2022
876f1cc
Move `net::parser` into `net::addr` module.
reitermarkus Aug 19, 2022
c8cc821
Flatten `net` module again.
reitermarkus Aug 24, 2022
4a33bf3
Simplify MIR opt tests
JakobDegen Aug 21, 2022
803e35a
Remove unneeded extra whitespace before where clause
GuillaumeGomez Aug 31, 2022
4304d1d
Update rustdoc tests
GuillaumeGomez Aug 31, 2022
b112bfe
Add rustdoc GUI test
GuillaumeGomez Aug 31, 2022
f8af919
Add warning against unexpected --cfg with --check-cfg
Urgau Aug 11, 2022
a928255
Fix bad target name in Walkthrough
diminishedprime Aug 31, 2022
037a911
rustdoc: remove unused `.docblock .impl-items` CSS
notriddle Aug 31, 2022
3b4a02a
Rollup merge of #98368 - sunfishcode:sunfishcode/std-os-fd, r=joshtri…
matthiaskrgr Sep 1, 2022
4648fed
Rollup merge of #99583 - shepmaster:provider-plus-plus, r=yaahc
matthiaskrgr Sep 1, 2022
6c60a4a
Rollup merge of #100200 - petrochenkov:zgccld2, r=lqd,Mark-Simulacrum
matthiaskrgr Sep 1, 2022
bfa3555
Rollup merge of #100552 - petrochenkov:flavorcompat, r=lqd
matthiaskrgr Sep 1, 2022
3bbd4ce
Rollup merge of #100574 - Urgau:check-cfg-warn-cfg, r=petrochenkov
matthiaskrgr Sep 1, 2022
f33122c
Rollup merge of #100640 - reitermarkus:socket-display-buffer, r=thomcc
matthiaskrgr Sep 1, 2022
02fc0aa
Rollup merge of #100827 - JakobDegen:better-tests, r=wesleywiser
matthiaskrgr Sep 1, 2022
baa19eb
Rollup merge of #101245 - GuillaumeGomez:remove-unneeded-where-whites…
matthiaskrgr Sep 1, 2022
d6a0fbd
Rollup merge of #101251 - diminishedprime:patch-1, r=JohnTitor
matthiaskrgr Sep 1, 2022
dcaa686
Rollup merge of #101254 - rust-lang:notriddle/remove-even-more-css, r…
matthiaskrgr Sep 1, 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
Prev Previous commit
Next Next commit
Clarify that the fd module is supported on Unix and WASI.
  • Loading branch information
sunfishcode committed Aug 29, 2022
commit bda12629c3d0926c14b9fbe3f814972f8d50043c
5 changes: 2 additions & 3 deletions library/std/src/os/fd/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
//! Owned and borrowed Unix-like file descriptors.
//!
//! This module is supported on Unix platforms, and also some non-Unix
//! platforms which use a similar file descriptor system for referencing OS
//! resources.
//! This module is supported on Unix platforms and WASI, which both use a
//! similar file descriptor system for referencing OS resources.

#![stable(feature = "io_safety", since = "1.63.0")]
#![deny(unsafe_op_in_unsafe_fn)]