Skip to content

Rollup of 7 pull requests #134332

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

Merged
merged 18 commits into from
Dec 15, 2024
Merged
Changes from 2 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
22dac23
std::net: Solaris supports `SOCK_CLOEXEC` as well since 11.4.
devnexen Sep 14, 2024
242c6c3
Add value accessor methods to `Mutex` and `RwLock`
EFanZh Nov 30, 2024
3a64bef
Also forbid target_feature annotated methods from being lang items
oli-obk Dec 13, 2024
ea048cf
Replace i32 by char to add clarity
tkr-sh Dec 14, 2024
891a75b
Add clarity to the "greater" of `VecDeque::insert`
tkr-sh Dec 14, 2024
6d5c591
Replace i32 by char in `split_at` & `_unchecked`
tkr-sh Dec 14, 2024
b0e04d5
move datalog fact generation into a legacy module
lqd Dec 11, 2024
585c71f
refactor access fact generation
lqd Dec 11, 2024
ca055ee
Don't make a def id for impl_trait_in_bindings
compiler-errors Dec 14, 2024
8a4e5d7
Add some convenience helper methods on `hir::Safety`
oli-obk Dec 13, 2024
a4ef751
don't show the full linker args unless `--verbose` is passed
jyn514 Dec 25, 2023
acdcd3a
Rollup merge of #130361 - devnexen:sock_cloexec_solaris, r=cuviper
Zalathar Dec 15, 2024
6667908
Rollup merge of #133406 - EFanZh:lock-value-accessors, r=Noratrieb
Zalathar Dec 15, 2024
5ce0d81
Rollup merge of #133633 - jyn514:hide-linker-args, r=bjorn3,jyn514
Zalathar Dec 15, 2024
d48af09
Rollup merge of #134285 - oli-obk:push-vwrqsqlwnuxo, r=Urgau
Zalathar Dec 15, 2024
b974187
Rollup merge of #134310 - tkr-sh:master, r=Noratrieb
Zalathar Dec 15, 2024
81378c8
Rollup merge of #134313 - compiler-errors:no-itib-def-id, r=oli-obk
Zalathar Dec 15, 2024
6c75fc8
Rollup merge of #134315 - lqd:polonius-next-episode-1, r=jackh726
Zalathar Dec 15, 2024
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
1 change: 1 addition & 0 deletions library/std/src/sys/pal/unix/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ impl Socket {
target_os = "netbsd",
target_os = "openbsd",
target_os = "nto",
target_os = "solaris",
))] {
// On platforms that support it we pass the SOCK_CLOEXEC
// flag to atomically create the socket and set it as
Expand Down