about summary refs log tree commit diff
path: root/src/test/bench/task-perf-vector-party.rs
AgeCommit message (Collapse)AuthorLines
2012-05-26bench: Remove task-perf-vector-party. No longer relevantBrian Anderson-23/+0
2012-05-26core: Make range follow the for loop protocolBrian Anderson-2/+2
2012-05-23bench: Add hard mode to benchmarks. Activate with RUST_BENCH.Brian Anderson-2/+8
RUST_BENCH is on automatically when running `make perf`
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-1/+1
2012-02-22Make the various from_str functions return optionsMarijn Haverbeke-10/+2
So that they can be used with user input without causing task failures. Closes #1335
2012-01-06update to use new spawn syntaxNiko Matsakis-1/+1
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-4/+4
2011-10-21Remove some semicolons after block callsMarijn Haverbeke-2/+2
The remaining ones can be removed after the next snapshot. (Or we can let the next pretty-print pass take care of them.)
2011-10-21Remove remaining uses of iter and for-eachMarijn Haverbeke-3/+3
Issue #1056
2011-10-20Remove temporary fn# syntaxBrian Anderson-1/+1
2011-10-20Drop the 2 from the spawn*2 functionsBrian Anderson-1/+1
Issue #1022
2011-10-20Convert tests to use bare-fn spawnBrian Anderson-2/+2
Issue #1022
2011-09-02Reformat. Issue #855Brian Anderson-10/+7
2011-09-01Rename std::istr to std::str. Issue #855Brian Anderson-2/+2
2011-09-01Add a benchmark for cross-task kernel memory region synchronizationBrian Anderson-0/+28
Vectors are allocated from the kernel's memory region, which has some heinous synchronization. This is a stress test of vector allocation in many tasks.