task -> thread

This commit is contained in:
rohan.prinja 2015-11-14 05:07:55 +09:00 committed by Rohan Prinja
parent f00532bab0
commit 1f02c4ebbb
119 changed files with 1209 additions and 1207 deletions

View file

@ -12,7 +12,7 @@ use std::borrow::ToOwned;
use std::cmp::Ordering;
use std::collections::HashMap;
use std::thread;
use util::task::spawn_named;
use util::thread::spawn_named;
use util::time::duration_from_seconds;
pub struct Profiler {

View file

@ -15,7 +15,7 @@ use std::collections::BTreeMap;
use std::time::Duration;
use std::{thread, f64};
use std_time::precise_time_ns;
use util::task::spawn_named;
use util::thread::spawn_named;
use util::time::duration_from_seconds;
pub trait Formattable {