Skip to content

Rollup of 10 pull requests #94532

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 39 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
47aaf79
Add documentation about `BorrowedFd::to_owned`.
sunfishcode Jan 26, 2022
ca42a1b
Update the documentation for `{As,Into,From}Raw{Fd,Handle,Socket}`.
sunfishcode Feb 1, 2022
713bb19
Add missing `pub` keywords.
sunfishcode Feb 1, 2022
8516895
Fix two copy+pastos.
sunfishcode Feb 1, 2022
6ef7ee3
Fix unresolved doc links.
sunfishcode Feb 1, 2022
89544e9
Fix errors.
sunfishcode Feb 1, 2022
656d2a3
Use `From`/`Into` rather than the traits they replaced.
sunfishcode Feb 1, 2022
f88fb2a
x.py fmt
sunfishcode Feb 1, 2022
ba6050f
Remove the documentation comment for `OwnedSocket::from_raw_socket`.
sunfishcode Feb 3, 2022
4c4e430
Rename `BorrowedFd::borrow_raw_fd` to `BorrowedFd::borrow_raw`.
sunfishcode Feb 4, 2022
7d603dc
x.py fmt
sunfishcode Feb 4, 2022
12b80a4
Move the set of features to the `features` query.
cjgillot Jan 16, 2022
47f71b0
Remove useless map.
cjgillot Jan 16, 2022
cbc1202
Force ensure stability_index.
cjgillot Jan 16, 2022
ac27ac0
Bless test.
cjgillot Jan 16, 2022
7fcf0e2
Move query providers.
cjgillot Jan 16, 2022
56befcd
Gate stability attrs with other attributes.
cjgillot Jan 18, 2022
65a1d3e
Cleanup feature gates.
cjgillot Jan 19, 2022
4f880ba
Make unknown feature error deterministic.
cjgillot Feb 21, 2022
c7ff23f
Do not point at whole file missing `fn main`
estebank Jan 21, 2022
4c7fb9e
Add helper function to suggest multiple constraints
WaffleLapkin Feb 25, 2022
400d343
Suggest adding `Copy` bound when Adt is moved out
WaffleLapkin Feb 25, 2022
879efa8
Add a test for Adt copy suggestions
WaffleLapkin Feb 25, 2022
f0a16b8
Use rustfix in copy suggestion test
WaffleLapkin Mar 1, 2022
f287866
Demote Windows XP to no_std only
RandomInsano Mar 1, 2022
6739299
Miri/CTFE: properly treat overflow in (signed) division/rem as UB
RalfJung Mar 2, 2022
3768f0b
update char signess for openbsd
semarie Mar 2, 2022
fa8e1be
merge the char signess list of archs with freebsd as it is the same
semarie Mar 2, 2022
2d854f9
Remove num_cpus dependency from bootstrap, build-manifest and rustc_s…
bjorn3 Mar 2, 2022
d840a6e
Rollup merge of #92061 - semarie:openbsd-archs, r=joshtriplett
matthiaskrgr Mar 2, 2022
5fe5fa3
Rollup merge of #93142 - estebank:missing-main, r=wesleywiser
matthiaskrgr Mar 2, 2022
0d6881c
Rollup merge of #93354 - sunfishcode:sunfishcode/document-borrowedfd-…
matthiaskrgr Mar 2, 2022
0ef06e7
Rollup merge of #93562 - sunfishcode:sunfishcode/io-docs, r=joshtriplett
matthiaskrgr Mar 2, 2022
8d58542
Rollup merge of #93663 - sunfishcode:sunfishcode/as-raw-name, r=josht…
matthiaskrgr Mar 2, 2022
71c0a62
Rollup merge of #94096 - cjgillot:ensure-stability, r=lcnr
matthiaskrgr Mar 2, 2022
f5569b7
Rollup merge of #94375 - WaffleLapkin:copy-suggestion, r=estebank
matthiaskrgr Mar 2, 2022
152a6a2
Rollup merge of #94499 - RandomInsano:patch-1, r=Dylan-DPC
matthiaskrgr Mar 2, 2022
a174e43
Rollup merge of #94512 - RalfJung:sdiv-ub, r=oli-obk
matthiaskrgr Mar 2, 2022
fd8058a
Rollup merge of #94524 - bjorn3:remove_num_cpus, r=Mark-Simulacrum
matthiaskrgr Mar 2, 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
merge the char signess list of archs with freebsd as it is the same
  • Loading branch information
semarie committed Mar 2, 2022
commit fa8e1bedd34d85d4cbe83b8c61a53d080a83e72d
12 changes: 1 addition & 11 deletions library/core/src/ffi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ mod c_char_definition {
all(target_os = "android", any(target_arch = "aarch64", target_arch = "arm")),
all(target_os = "l4re", target_arch = "x86_64"),
all(
target_os = "freebsd",
any(target_os = "freebsd", target_os = "openbsd"),
any(
target_arch = "aarch64",
target_arch = "arm",
Expand All @@ -130,16 +130,6 @@ mod c_char_definition {
target_os = "netbsd",
any(target_arch = "aarch64", target_arch = "arm", target_arch = "powerpc")
),
all(
target_os = "openbsd",
any(
target_arch = "aarch64",
target_arch = "arm",
target_arch = "powerpc",
target_arch = "powerpc64",
target_arch = "riscv64",
),
),
all(
target_os = "vxworks",
any(
Expand Down