std: Remove ThreadPerCore spawn mode. Unused

This commit is contained in:
Brian Anderson 2013-07-09 17:44:28 -07:00
parent 413d51e32d
commit 1dbcc8b188
5 changed files with 1 additions and 28 deletions

View file

@ -106,8 +106,6 @@ pub enum SchedMode {
/// All tasks run in the same OS thread
SingleThreaded,
/// Tasks are distributed among available CPUs
ThreadPerCore,
/// Each task runs in its own OS thread
ThreadPerTask,
/// Tasks are distributed among a fixed number of OS threads
ManualThreads(uint),
@ -1143,22 +1141,6 @@ fn test_child_doesnt_ref_parent() {
task::spawn(child_no(0));
}
#[test]
fn test_sched_thread_per_core() {
let (port, chan) = comm::stream();
do spawn_sched(ThreadPerCore) || {
unsafe {
let cores = rt::rust_num_threads();
let reported_threads = rt::rust_sched_threads();
assert_eq!(cores as uint, reported_threads as uint);
chan.send(());
}
}
port.recv();
}
#[test]
fn test_spawn_thread_on_demand() {
let (port, chan) = comm::stream();