Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
18f8657
Pass -bnoipath when adding rust upstream dynamic crates
Aug 9, 2024
1ae1f8c
Clarify comment
daltenty Dec 6, 2024
61fd92e
Removed Unnecessary Spaces From RELEASES.md
rohit141914 Dec 6, 2024
5d8233e
Define acronym for thread local storage
Will-Low Dec 6, 2024
120d6b2
Fix: typo in E0751 error explanation
off019 Dec 7, 2024
ab2ee7a
Use option "-sf" for the AIX "ln" command.
xingxue-ibm Dec 6, 2024
f884f18
Move tests for `-l` and `#[link(..)]` into `tests/ui/link-native-libs`
Zalathar Dec 7, 2024
db9e368
Actually walk into lifetimes and attrs in EarlyContextAndPass
compiler-errors Dec 7, 2024
0a48b96
Move more tests into `tests/ui/link-native-libs`
Zalathar Dec 7, 2024
8aacd1c
compiletest: show the difference between the normalized output and th…
jyn514 Dec 2, 2024
9b07e75
Add allocate_bytes and refactor allocate_str in InterpCx for raw byte…
shamb0 Dec 4, 2024
68253e1
Don't suggest restricting bound with unstable traits on stable
estebank Nov 27, 2024
d13c348
reword trait bound suggestion message to include the bounds
estebank Nov 28, 2024
568b0ac
Add test for lack of suggestion in stable
estebank Nov 28, 2024
3f2a63a
Use trait name instead of full constraint in suggestion message
estebank Nov 28, 2024
d860e5b
Mention type parameter in more cases and don't suggest ~const bound a…
estebank Nov 28, 2024
cb4db0a
Account for `impl Trait` in "add bound" suggestion message
estebank Nov 28, 2024
af09423
fix rustdoc test
estebank Nov 28, 2024
b466405
Do not talk about "trait `<Foo = Bar>`"
estebank Nov 28, 2024
6277fb0
Use run-make `diff` output for stable output test
estebank Nov 29, 2024
25ad047
Tweak wording
estebank Dec 7, 2024
b9f68fe
Rollup merge of #133522 - estebank:dont-suggest-unstable-trait, r=com…
workingjubilee Dec 8, 2024
c8cb6d2
Rollup merge of #133733 - jyn514:compiletest-diffs, r=jieyouxu
workingjubilee Dec 8, 2024
13ea986
Rollup merge of #133861 - shamb0:refactor_InterpCx_allocate_str, r=Ra…
workingjubilee Dec 8, 2024
eca5d60
Rollup merge of #133967 - daltenty:daltenty/bnoipath, r=jieyouxu
workingjubilee Dec 8, 2024
43f7177
Rollup merge of #133976 - rohit141914:master, r=workingjubilee
workingjubilee Dec 8, 2024
7e014de
Rollup merge of #133980 - xingxue-ibm:ln-option-aix, r=jieyouxu
workingjubilee Dec 8, 2024
72938f6
Rollup merge of #133987 - Will-Low:DefineTlsAcronym, r=workingjubilee
workingjubilee Dec 8, 2024
a402cda
Rollup merge of #133992 - compiler-errors:walk-fully, r=jieyouxu
workingjubilee Dec 8, 2024
4cd5e64
Rollup merge of #133993 - LuanOldCode:fix-e0571-typo, r=compiler-errors
workingjubilee Dec 8, 2024
f47a3f3
Rollup merge of #133996 - Zalathar:ui-link-native-libs, r=jieyouxu
workingjubilee Dec 8, 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
2 changes: 1 addition & 1 deletion library/std/src/thread/local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::cell::{Cell, RefCell};
use crate::error::Error;
use crate::fmt;

/// A thread local storage key which owns its contents.
/// A thread local storage (TLS) key which owns its contents.
///
/// This key uses the fastest possible implementation available to it for the
/// target platform. It is instantiated with the [`thread_local!`] macro and the
Expand Down