Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
b0b9f5b
std: never panic in `thread::park` and `thread::park_timeout`
joboet Sep 28, 2022
99182dd
std: use semaphore for thread parking on Apple platforms
joboet Oct 6, 2022
0ad4dd4
std: add thread parking tests
joboet Oct 6, 2022
bde80f7
Add lint for diagnostic migration
naritanara Aug 22, 2022
2f74d1d
Migrate weak_lang_items.rs
naritanara Aug 22, 2022
17a4a68
Migrate derivable diagnostics in lang_items.rs
naritanara Sep 1, 2022
0315d7c
Migrate derivable diagnostics in check_attr.rs
naritanara Sep 2, 2022
2c3351c
Migrate InvalidAttrAtCrateLevel
naritanara Sep 2, 2022
c24a873
always put ftl message on next line, resolve all but 1 output compari…
CleanCut Sep 21, 2022
b8e03cf
use consistent names
CleanCut Sep 22, 2022
1222541
resolve merge conflict from cherry-picking 6a47326a0452cc8d5cb5767650…
diegooliveira Sep 14, 2022
c103c30
migrate the rest of weak_lang_items.rs to translateable diagnostics
CleanCut Sep 22, 2022
1e86226
migrate debugger_visualizer.rs to translateable diagnostics
CleanCut Sep 22, 2022
f8ebc72
errors: add `emit_note`/`create_note`
davidtwco Sep 1, 2022
3a74833
use cherry-picked commit from #100754 to emit note without error
CleanCut Sep 22, 2022
0609c0f
migrate diagnostic_items.rs to translateable diagnostics
CleanCut Sep 23, 2022
40d5f00
migrate layout_test.rs to translateable diagnostics
CleanCut Sep 23, 2022
c457abe
migrate lib_features.rs to translateable diagnostics
CleanCut Sep 24, 2022
572f341
migrate check_const.rs to translateable diagnostics
CleanCut Sep 24, 2022
69766e4
migrate loops.rs to translateable diagnostics
CleanCut Sep 26, 2022
96f92ea
migrate naked_functions.rs to translateable diagnostics
CleanCut Sep 27, 2022
b17ec43
migrate entry.rs to translateable diagnostics
CleanCut Sep 28, 2022
f0afb88
migrate lang_items.rs to translateable diagnostics
CleanCut Oct 1, 2022
a7aa185
migrate dead.rs to translateable diagnostics
CleanCut Oct 2, 2022
3fe8e00
migrate the rest of check_attr.rs to translateable diagnostics
CleanCut Oct 2, 2022
be4059d
migrate stability.rs to translateable diagnostics
CleanCut Oct 3, 2022
965dbf6
First batch of review feedback changes from #102110
CleanCut Oct 3, 2022
8e07a85
Remove code that was removed in master, and the corresponding diagnostic
CleanCut Oct 5, 2022
57eba4f
avoid string dispatch in fluent
CleanCut Oct 5, 2022
31c269a
avoid string dispatch in fluent
CleanCut Oct 7, 2022
b4c8a7b
std: remove unused linker attribute
joboet Oct 8, 2022
c320ab9
std: do not use dispatch semaphore under miri (yet)
joboet Oct 8, 2022
88bb4e4
impl AsFd for io::{Stdin, Stdout, Stderr}, not the sys versions
joshtriplett Oct 9, 2022
ef68327
Consolidate AsFd instances for stdio types into `library/std/src/os/f…
joshtriplett Oct 10, 2022
50e2795
remove out-of-date fixme
CleanCut Oct 10, 2022
5ef1c03
make up your mind, rustfmt
CleanCut Oct 10, 2022
a474ec5
Move lifetime resolution module to rustc_hir_analysis.
cjgillot Oct 9, 2022
6826028
fix #102878
TaKO8Ki Oct 10, 2022
b63b02f
rustdoc: remove unneeded `<div>` wrapper from sidebar DOM
notriddle Oct 10, 2022
44f466c
Remove outdated comment
notriddle Oct 11, 2022
91509c9
Rollup merge of #102110 - CleanCut:migrate_rustc_passes_diagnostics, …
Dylan-DPC Oct 11, 2022
652e46b
Rollup merge of #102412 - joboet:dont_panic, r=m-ou-se
Dylan-DPC Oct 11, 2022
8cb570d
Rollup merge of #102773 - joboet:apple_parker, r=thomcc
Dylan-DPC Oct 11, 2022
6e3f2e6
Rollup merge of #102847 - joshtriplett:bugfix-impl-fd-traits-for-io-t…
Dylan-DPC Oct 11, 2022
868d35f
Rollup merge of #102859 - cjgillot:collect-lifetimes, r=oli-obk
Dylan-DPC Oct 11, 2022
7f08482
Rollup merge of #102893 - TaKO8Ki:fix-102878, r=davidtwco
Dylan-DPC Oct 11, 2022
f09bc51
Rollup merge of #102898 - notriddle:notriddle/sidebar-block, r=Guilla…
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
Prev Previous commit
Next Next commit
std: remove unused linker attribute
  • Loading branch information
joboet committed Oct 8, 2022
commit b4c8a7b952de72bc70e798408efbd4124fa15c59
2 changes: 1 addition & 1 deletion library/std/src/sys/unix/thread_parker/darwin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type dispatch_time_t = u64;
const DISPATCH_TIME_NOW: dispatch_time_t = 0;
const DISPATCH_TIME_FOREVER: dispatch_time_t = !0;

#[link(name = "System", kind = "dylib")]
// Contained in libSystem.dylib, which is linked by default.
extern "C" {
fn dispatch_time(when: dispatch_time_t, delta: i64) -> dispatch_time_t;
fn dispatch_semaphore_create(val: isize) -> dispatch_semaphore_t;
Expand Down