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 9 pull requests #103069

Merged
merged 22 commits into from
Oct 15, 2022
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
43bcc71
refactor: use grep -E/-F instead of fgrep/egrep
kxxt Sep 21, 2022
6135aff
simplify
kxxt Sep 26, 2022
4cf30c0
Improved documentation for `std::io::Error`
StackOverflowExcept1on Oct 7, 2022
dbb4271
checktools: fix comments
RalfJung Oct 14, 2022
b8bb406
remove leading newlines from integer primitive doc examples
Oct 14, 2022
0313fbe
Update browser-ui-test version to fix some flaky tests
GuillaumeGomez Oct 14, 2022
f95e853
Tweak grammar
joshtriplett Oct 14, 2022
9787321
Clean up rust-logo rustdoc GUI test
GuillaumeGomez Oct 14, 2022
c9948f5
Fix `Duration::{try_,}from_secs_f{32,64}(-0.0)`
beetrees Oct 14, 2022
c46185b
Bugfix: keep TLS data in sync
raoulstrackx Oct 13, 2022
3c00626
Add some tidy-alphabetical
Noratrieb Oct 14, 2022
1b8012f
Also run alphabetical check in src and library
Noratrieb Oct 14, 2022
b00cb04
Sort target features alphabetically
Noratrieb Oct 14, 2022
f72d76d
Rollup merge of #102092 - kxxt:patch-1, r=joshtriplett
matthiaskrgr Oct 14, 2022
fbb0c31
Rollup merge of #102781 - StackOverflowExcept1on:master, r=joshtriplett
matthiaskrgr Oct 14, 2022
d47b755
Rollup merge of #103017 - fortanix:raoul/sgx_tls_fix, r=ChrisDenton
matthiaskrgr Oct 14, 2022
9f22530
Rollup merge of #103039 - RalfJung:checktools, r=Dylan-DPC
matthiaskrgr Oct 14, 2022
1a5d8a5
Rollup merge of #103045 - lukas-code:blank-lines, r=GuillaumeGomez
matthiaskrgr Oct 14, 2022
fa1279f
Rollup merge of #103047 - GuillaumeGomez:update-browser-ui-test, r=no…
matthiaskrgr Oct 14, 2022
62a9c32
Rollup merge of #103054 - GuillaumeGomez:cleanup-rust-logo-test, r=no…
matthiaskrgr Oct 14, 2022
03a521b
Rollup merge of #103059 - beetrees:duration-from-negative-zero, r=thomcc
matthiaskrgr Oct 14, 2022
a96f1a8
Rollup merge of #103067 - Nilstrieb:tidy-likes-the-alphabet, r=jackh726
matthiaskrgr Oct 14, 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
Bugfix: keep TLS data in sync
raoulstrackx committed Oct 14, 2022
commit c46185bea01190e54ffc672d5b2b13c8df5d8068
1 change: 1 addition & 0 deletions library/std/src/sys/sgx/abi/tls/mod.rs
Original file line number Diff line number Diff line change
@@ -111,6 +111,7 @@ impl Tls {
rtabort!("TLS limit exceeded")
};
TLS_DESTRUCTOR[index].store(dtor.map_or(0, |f| f as usize), Ordering::Relaxed);
unsafe { Self::current() }.data[index].set(ptr::null_mut());
Key::from_index(index)
}