Add task profiler, which works by instrumenting each task runtime when enabled.

This commit is contained in:
Glenn Watson 2014-10-29 07:24:34 +10:00
parent 3aad350a64
commit 90d793cdc8
7 changed files with 241 additions and 10 deletions

View file

@ -30,6 +30,8 @@ extern crate url;
#[phase(plugin)]
extern crate string_cache_macros;
#[phase(plugin)]
extern crate lazy_static;
use std::sync::Arc;
@ -45,6 +47,7 @@ pub mod namespace;
pub mod opts;
pub mod range;
pub mod resource_files;
pub mod rtinstrument;
pub mod smallvec;
pub mod sort;
pub mod str;