| Age | Commit message (Expand) | Author | Lines |
| 2016-11-01 | Document reasoning for supporting both fast and OS TLS in the same bin | Brian Anderson | -0/+9 |
| 2016-11-01 | std: Move elf TLS to sys::fast_thread_local | Brian Anderson | -162/+3 |
| 2016-10-22 | Add Fuchsia support | Raph Levien | -30/+42 |
| 2016-10-10 | Auto merge of #36341 - sagebind:thread_id, r=alexcrichton | bors | -0/+59 |
| 2016-10-07 | Unlock guard before overflow panic | Stephen M. Coakley | -0/+1 |
| 2016-10-05 | Use mutex to guard thread ID counter | Stephen M. Coakley | -30/+8 |
| 2016-10-05 | Generate ID using u64 + atomic spinlock | Stephen M. Coakley | -14/+54 |
| 2016-09-30 | Auto merge of #36339 - brson:emscripten-new, r=alexcrichton | bors | -2/+2 |
| 2016-09-30 | Ignore various entire test modules on emscripten | Brian Anderson | -27/+2 |
| 2016-09-30 | Ignore lots and lots of std tests on emscripten | Brian Anderson | -0/+25 |
| 2016-09-16 | Update to new macro url syntax | Guillaume Gomez | -1/+1 |
| 2016-09-08 | Fix tests | Stephen M. Coakley | -2/+2 |
| 2016-09-07 | Add ThreadId for comparing threads | Stephen M. Coakley | -0/+40 |
| 2016-09-04 | Clean up thread-local storage docs | Andrew Paseltiner | -20/+15 |
| 2016-08-30 | Rollup merge of #35997 - matthew-piziak:thread-current-example, r=GuillaumeGomez | Guillaume Gomez | -0/+18 |
| 2016-08-25 | add a simple example for `thread::current()` | Matthew Piziak | -0/+18 |
| 2016-08-24 | Use `#[prelude_import]` in `libstd`. | Jeffrey Seyfried | -13/+0 |
| 2016-08-03 | Add link to replacement function | Stefan Schindler | -1/+6 |
| 2016-08-03 | Add an example to `std::thread::park_timeout` | Stefan Schindler | -0/+19 |
| 2016-06-28 | Rollup merge of #34406 - frewsxcv:sleep-ex, r=alexcrichton | Guillaume Gomez | -0/+13 |
| 2016-06-27 | Add example for `std::thread::sleep`. | Corey Farwell | -0/+13 |
| 2016-06-25 | Auto merge of #34465 - frewsxcv:builder-name-example, r=GuillaumeGomez | bors | -0/+15 |
| 2016-06-25 | Auto merge of #34410 - frewsxcv:code-like, r=apasel422 | bors | -4/+4 |
| 2016-06-25 | Rollup merge of #34438 - frewsxcv:joinhandle, r=GuillaumeGomez | Manish Goregaokar | -0/+30 |
| 2016-06-25 | Add doc example for `std::thread::Builder::name`. | Corey Farwell | -0/+15 |
| 2016-06-24 | Add examples in docs for `JoinHandle`. | Corey Farwell | -0/+24 |
| 2016-06-24 | Use `Option::expect` instead of `unwrap_or_else` with `panic!`. | Corey Farwell | -3/+3 |
| 2016-06-24 | Indicate how the `JoinHandle` struct is created. | Corey Farwell | -0/+6 |
| 2016-06-23 | Auto merge of #34077 - durka:patch-23, r=alexcrichton | bors | -4/+38 |
| 2016-06-22 | upgrade thread_local! invocation syntax | Alex Burka | -4/+38 |
| 2016-06-22 | Parameters in doc comment should be formatted code-like. | Corey Farwell | -4/+4 |
| 2016-06-21 | Rollup merge of #34371 - frewsxcv:thread-name, r=steveklabnik | Guillaume Gomez | -0/+31 |
| 2016-06-19 | Add examples for `std::thread::Thread::name`. | Corey Farwell | -0/+31 |
| 2016-06-18 | Add example in docs for `std::thread::panicking`. | Corey Farwell | -0/+29 |
| 2016-05-30 | std: Clean out old unstable + deprecated APIs | Alex Crichton | -308/+0 |
| 2016-05-16 | Added a big-picture explanation for thread::park() & co. | Pyry Kontio | -1/+3 |
| 2016-05-09 | rustc: Implement custom panic runtimes | Alex Crichton | -11/+6 |
| 2016-05-02 | std::thread docs: spawn() returns not a Thread anymore | Georg Brandl | -15/+14 |
| 2016-04-25 | libstd: fix typos in thread::LocalKey docs | Ryman | -2/+2 |
| 2016-03-25 | Fix unsound behaviour with null characters in thread names (issue #32475) | David Henningsson | -3/+18 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -1/+1 |
| 2016-03-12 | std: Clean out deprecated APIs | Alex Crichton | -34/+0 |
| 2016-03-04 | End stdlib module summaries with a full stop. | Steve Klabnik | -1/+1 |
| 2016-02-29 | std: Stabilize APIs for the 1.8 release | Alex Crichton | -0/+10 |
| 2016-02-04 | Stop using unsafe code in TLS macro expansion (fixes #30756) | Manish Goregaokar | -23/+27 |
| 2016-01-29 | std: Ignore dtors_in_dtors_in_dtors on OSX | Alex Crichton | -0/+25 |
| 2016-01-11 | Replace no_elf_tls with target_thread_local | Amanieu d'Antras | -38/+3 |
| 2015-12-29 | Fix warnings when compiling stdlib with --test | Florian Hahn | -5/+5 |
| 2015-12-21 | std: Use cfg(target_thread_local) in thread_local! | Alex Crichton | -77/+48 |
| 2015-12-10 | Auto merge of #30267 - alexcrichton:tls-init-oh-my, r=nikomatsakis | bors | -1/+16 |