about summary refs log tree commit diff
path: root/library/std/src/thread/scoped.rs
AgeCommit message (Expand)AuthorLines
2022-12-05fix dupe word typosRageking8-1/+1
2022-06-27fix data race in thread::scopeRalf Jung-4/+6
2022-06-20Improve docs for `is_running` to explain use caseJosh Triplett-3/+4
2022-06-11Stabilize scoped threads.Mara Bos-8/+10
2022-03-30Don't stabilize ScopedJoinHandle::is_finished yet.Mara Bos-1/+0
2022-03-19Stabilize thread::is_finishedJubilee Young-1/+1
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-1/+1
2022-03-09Add documentation about lifetimes to thread::scope.Mara Bos-0/+18
2022-03-08Rollup merge of #94559 - m-ou-se:thread-scope-spawn-closure-without-arg, r=Ma...Matthias Krüger-21/+23
2022-03-07Use `f` instead of `|| f()`.Mara Bos-1/+1
2022-03-04Use '_ for irrelevant lifetimes in Debug impl.Mara Bos-1/+1
2022-03-03Remove argument from closure in thread::Scope::spawn.Mara Bos-21/+23
2022-03-03Remove unnecessary #![feature]s from doctest.Mara Bos-2/+0
2022-03-03Rename JoinHandle::is_running to is_finished and update docs.Mara Bos-4/+9
2022-01-22Add test for thread::Scope invariance.Mara Bos-0/+13
2022-01-05Mention *scoped* thread in panic message.Mara Bos-1/+1
2022-01-05Note the invariance over 'env in Scope<'env>.Mara Bos-0/+2
2022-01-05Fix missing .load() in Scope's Debug impl.Mara Bos-1/+1
2022-01-05Rename n_running_threads to num_running_threads.Mara Bos-9/+9
2022-01-04Fix typo in Scope::spawn docs.Mara Bos-1/+1
2022-01-04Fix typo in is_running() docs.Mara Bos-1/+1
2022-01-04Fix typo in documentation.Mara Bos-1/+1
2022-01-04Use > rather than == for overflow check in scoped threads.Mara Bos-1/+1
2022-01-04Fix variance of thread::Scope.Mara Bos-1/+1
2022-01-04Formatting.Mara Bos-1/+3
2022-01-04Simplify panicking mechanism of thread::scope.Mara Bos-23/+17
2022-01-04Add documentation for scoped threads.Mara Bos-11/+175
2022-01-04Add ScopedJoinHandle::is_running().Mara Bos-1/+10
2022-01-04Implement RFC 3151: Scoped threads.Mara Bos-0/+132