Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
de61934
std: clarify `OpenOptions` error for create without write access
0xdeafbeef Aug 5, 2025
b951b5d
stabilize strict provenance atomic ptr
Kivooeo Aug 15, 2025
e42c1b1
Stabilize `round_char_boundary` feature
okaneco Aug 22, 2025
4edfeb2
compiler: Include span of too huge enum with -Cdebuginfo=2
Enselic Aug 28, 2025
2d0668d
Mark pipe2 supported in Android
maurer Aug 28, 2025
6fd0e50
autoderef final ty is already resolved
lcnr Aug 29, 2025
e3f1e94
std: haiku: fix `B_FIND_PATH_IMAGE_PATH`
GrigorenkoPV Aug 29, 2025
85cefab
std: use a TAIT to define `SplitPaths` on UNIX
joboet Aug 11, 2025
638a52c
Improve librustdoc error when a file creation/modification failed
GuillaumeGomez Aug 29, 2025
42acdae
Rollup merge of #144964 - 0xdeafbeef:fix-open-options, r=ibraheemdev
tgross35 Aug 29, 2025
cb2668d
Rollup merge of #145242 - joboet:tait-split-paths, r=Mark-Simulacrum
tgross35 Aug 29, 2025
5ebb519
Rollup merge of #145467 - Kivooeo:stabilize-strict_provenance_atomic_…
tgross35 Aug 29, 2025
5e2c1ad
Rollup merge of #145756 - okaneco:stabilize_char_boundary, r=scottmcm
tgross35 Aug 29, 2025
e1ee9b7
Rollup merge of #145967 - Enselic:big-enum-debuginfo-span, r=wesleywiser
tgross35 Aug 29, 2025
9eb9d7d
Rollup merge of #145990 - lcnr:final-ty-no-resolve, r=davidtwco
tgross35 Aug 29, 2025
a1941a0
Rollup merge of #145991 - GrigorenkoPV:haiku, r=tgross35
tgross35 Aug 29, 2025
ed0c091
Rollup merge of #146000 - GuillaumeGomez:rustdoc-error-improvement, r…
tgross35 Aug 29, 2025
1031540
Rollup merge of #146017 - maurer:pipe2, r=Mark-Simulacrum
tgross35 Aug 29, 2025
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
Mark pipe2 supported in Android
Android has supported pipe2 since 2010, long before the current min SDK.
  • Loading branch information
maurer committed Aug 29, 2025
commit 2d0668d37cd5d10504bdd62bcedef457b8fbad40
1 change: 1 addition & 0 deletions library/std/src/sys/pal/unix/pipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ pub fn anon_pipe() -> io::Result<(AnonPipe, AnonPipe)> {
// and musl 0.9.3, and some other targets also have it.
cfg_select! {
any(
target_os = "android",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "hurd",
Expand Down
Loading