about summary refs log tree commit diff
path: root/src/test/bench/task-perf-spawnalot.rs
AgeCommit message (Collapse)AuthorLines
2013-05-08test: Fix modes in the benchmarks.Patrick Walton-1/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-09-25use + mode for (almost) everything when not using legacy modesNiko Matsakis-1/+1
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-4/+4
#2907.
2012-07-01Convert to new closure syntaxBrian Anderson-2/+2
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-2/+2
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-3/+3
2012-06-28Make a bunch of tests stop using the deprecated vector syntax.Michael Sullivan-2/+2
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-1/+1
2012-05-23bench: Add hard mode to benchmarks. Activate with RUST_BENCH.Brian Anderson-4/+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-2/+2
2012-02-22Make the various from_str functions return optionsMarijn Haverbeke-7/+1
So that they can be used with user input without causing task failures. Closes #1335
2012-02-20core: New task APIBrian Anderson-1/+1
2012-01-06rewrite to use old C++-based mechanismNiko Matsakis-1/+1
2012-01-06update to use new spawn syntaxNiko Matsakis-2/+2
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-4/+4
2011-10-20Remove temporary fn# syntaxBrian Anderson-2/+2
2011-10-20Drop the 2 from the spawn*2 functionsBrian Anderson-2/+2
Issue #1022
2011-10-20Convert tests to use bare-fn spawnBrian Anderson-5/+4
Issue #1022
2011-09-02Reformat. Issue #855Brian Anderson-2/+4
2011-09-01Rename std::istr to std::str. Issue #855Brian Anderson-2/+2
2011-08-31Convert benchmarks to istrs. Issue #855Brian Anderson-4/+3
2011-08-20Rewrite reap_dead_tasks to never grab the sched lock before a task lockBrian Anderson-4/+0
Doing so contradicts the locking order used everywhere else and causes deadlocks. Un-XFAIL task-perf-spawnalot Closes #854
2011-08-20Convert task-perf-spawnalot to spawn_joinable. XFAILBrian Anderson-1/+7
2011-08-20ReformatBrian Anderson-15/+7
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-17Using move-mode for spawn thunks to avoid race conditions.Eric Holk-2/+3
2011-08-16Rename std::ivec to std::vecBrian Anderson-2/+2
2011-08-16Convert most main functions to the ivec signatureBrian Anderson-4/+3
Converting rustc will still take a snapshot
2011-08-15Reducing the chances for race conditions in join.Eric Holk-1/+1
2011-08-15Converted over benchmarks.Eric Holk-2/+2
2011-08-12Convert uint::parse_buf to ivecsBrian Anderson-1/+1
2011-08-12Convert benchmarks to ivecsBrian Anderson-3/+3
2011-08-12Remove vec version of str::bytes, rename bytes_ivec to str::bytesBrian Anderson-1/+2
2011-07-29Add a task spawning benchmarkBrian Anderson-0/+29
This is the kind of workload that the test runner generates - lots of tiny little tasks - and currently it leaves the CPU underutilized.