| Age | Commit message (Expand) | Author | Lines |
| 2023-03-10 | Moved thread_local implementation to sys::common | Ayush Singh | -373/+0 |
| 2023-03-10 | Move __thread_local_inner to sys | Ayush Singh | -194/+0 |
| 2023-01-17 | refactor[std]: do not use box syntax | joboet | -2/+1 |
| 2022-12-30 | Auto merge of #106296 - matthiaskrgr:rollup-ukdbqwx, r=matthiaskrgr | bors | -1/+1 |
| 2022-12-30 | Replace libstd, libcore, liballoc in line comments. | jonathanCogan | -1/+1 |
| 2022-12-28 | Catch panics in destruction of TLS values | Florian Bartels | -7/+14 |
| 2022-11-24 | Revert "Forbid inlining `thread_local!`'s `__getit` function on Windows" | Thom Chiovoloni | -16/+9 |
| 2022-11-22 | Forbid inlining `thread_local!`'s `__getit` function on Windows | Thom Chiovoloni | -9/+16 |
| 2022-10-13 | sync thread_local key conditions exactly with what the macro uses | Ralf Jung | -2/+5 |
| 2022-09-27 | Address feedback | mejrs | -1/+1 |
| 2022-09-27 | Wrapper suggestions | mejrs | -0/+1 |
| 2022-08-22 | update and extend some comments, and cfg-out some unused code | Ralf Jung | -0/+3 |
| 2022-05-01 | Fix some links in the standard library | Vadim Petrochenkov | -0/+2 |
| 2022-04-17 | Revert "Auto merge of #94373 - erikdesjardins:getitinl, r=Mark-Simulacrum" | Erik Desjardins | -2/+2 |
| 2022-04-12 | Add missing unsafe marker. | Mara Bos | -1/+1 |
| 2022-04-12 | Add #[deny(unsafe_op_in_unsafe_fn)] to thread_local!(const). | Mara Bos | -0/+1 |
| 2022-04-07 | Use gender neutral terms | James 'zofrex' Sanderson | -1/+1 |
| 2022-04-02 | Refer to u8 by absolute path in expansion of thread_local | David Tolnay | -3/+3 |
| 2022-04-01 | Fix `thread_local!` macro to be compatible with `no_implicit_prelude` | niluxv | -8/+8 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -3/+3 |
| 2022-03-05 | Small fixes in thread local code. | Mara Bos | -2/+2 |
| 2022-03-05 | Update documentation in thread/local.rs. | Mara Bos | -6/+26 |
| 2022-03-05 | Add debug asserts in thread local cell set methods. | Mara Bos | -0/+4 |
| 2022-03-05 | Add tracking issue number for local_key_cell_methods. | Mara Bos | -9/+9 |
| 2022-03-05 | Rename LocalKey's with_{ref,mut} to with_borrow{,_mut}. | Mara Bos | -9/+9 |
| 2022-03-05 | Implement RFC 3184 - thread local cell methods. | Mara Bos | -10/+347 |
| 2022-02-25 | Make TLS __getit #[inline(always)] on non-Windows | Erik Desjardins | -2/+2 |
| 2022-01-06 | Add diagnostic items for macros | Alex Macleod | -0/+1 |
| 2021-12-14 | Fix a bunch of typos | Frank Steffahn | -2/+2 |
| 2021-12-05 | Rollup merge of #91355 - alexcrichton:stabilize-thread-local-const, r=m-ou-se | Matthias Krüger | -1/+0 |
| 2021-12-02 | Document Windows TLS drop behaviour | Chris Denton | -0/+14 |
| 2021-11-29 | std: Stabilize the `thread_local_const_init` feature | Alex Crichton | -1/+0 |
| 2021-11-18 | Auto merge of #90774 - alexcrichton:tweak-const, r=m-ou-se | bors | -6/+6 |
| 2021-11-10 | std: Tweak expansion of thread-local const | Alex Crichton | -6/+6 |
| 2021-11-10 | Review comments | Alex Crichton | -1/+1 |
| 2021-11-10 | Use `target_family = "wasm"` | Alex Crichton | -13/+7 |
| 2021-11-10 | std: Get the standard library compiling for wasm64 | Alex Crichton | -8/+14 |
| 2021-06-24 | Use `#[non_exhaustive]` where appropriate | Jacob Pratt | -4/+3 |
| 2021-05-20 | std: Don't inline TLS accessor on MinGW | Alex Crichton | -13/+13 |
| 2021-05-18 | std: Attempt again to inline thread-local-init across crates | Alex Crichton | -0/+24 |
| 2021-05-02 | Change 'NULL' to 'null' | Brent Kerby | -1/+1 |
| 2021-04-21 | Rollup merge of #84013 - CDirkx:fmt, r=m-ou-se | Mara Bos | -4/+4 |
| 2021-04-21 | Replace all `fmt.pad` with `debug_struct` | Christiaan Dirkx | -4/+4 |
| 2021-04-18 | fix aliasing violations in thread_local_const_init | Ralf Jung | -1/+1 |
| 2021-04-16 | std: Add a variant of thread locals with const init | Alex Crichton | -2/+115 |
| 2020-11-07 | Convert a bunch of intra-doc links | Camelid | -1/+1 |
| 2020-09-26 | Auto merge of #74225 - poliorcetics:std-thread-unsafe-op-in-unsafe-fn, r=josh... | bors | -36/+107 |
| 2020-09-22 | Update library functions with stability attributes | Dylan MacKenzie | -0/+2 |
| 2020-09-21 | Fix missing unsafe block for target arch wasm32 | Alexis Bourget | -3/+10 |
| 2020-09-21 | Fix accordingly to review | Alexis Bourget | -22/+20 |