about summary refs log tree commit diff
path: root/src/libstd/task_pool.rs
AgeCommit message (Collapse)AuthorLines
2013-05-08libcore: Remove mutable fields from the task builder APIPatrick Walton-1/+3
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+0
2013-04-27only use #[no_core] in libcoreDaniel Micay-1/+0
2013-04-08Removing some mutable fields in libstdAlex Crichton-4/+3
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-1/+1
2013-03-28Removing unused importsAlex Crichton-2/+4
2013-03-22librustc: Remove all uses of `static` from functions. rs=destaticPatrick Walton-3/+4
2013-03-21librustc: Forbid destructors from being attached to any structs that might ↵Patrick Walton-0/+1
contain non-Owned fields. r=nmatsakis
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-1/+1
2013-03-04Remove unused imports throughout src/Alex Crichton-2/+0
2013-02-27Turn old `drop` blocks into `Drop` traitsBen Striegel-1/+4
2013-02-21core: Extract comm from pipes. #4742Brian Anderson-2/+2
2013-02-15libstd: Get rid of `move`.Luqman Aden-9/+9
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+1
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-1/+0
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+1
module scope. r=tjc
2012-12-28libstd: Fix tests. rs=bustagePatrick Walton-0/+1
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-2/+5
contain at least two components. r=graydon
2012-12-11Reverse the order of the results of pipes::streamTim Chevalier-1/+1
As per #3637.
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-15Rename thread_pool to task_poolTim Chevalier-0/+85
Minor change, no review. Closes #3972