aboutsummaryrefslogtreecommitdiffstats
path: root/components/profile/lib.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2015-07-14 18:28:57 -0700
committerPatrick Walton <pcwalton@mimiga.net>2015-07-24 17:02:17 -0700
commitf10c0761802ed0f77e21d410124ef54239beb48a (patch)
treec17f2bb6b6ee77c246802a88a5b7acaa40e1f57e /components/profile/lib.rs
parented1b6a3513e7546b580693f554a081bc0c7c478a (diff)
downloadservo-f10c0761802ed0f77e21d410124ef54239beb48a.tar.gz
servo-f10c0761802ed0f77e21d410124ef54239beb48a.zip
profile: Make the time and memory profilers run over IPC.
Uses the `Router` abstraction inside `ipc-channel` to avoid spawning new threads.
Diffstat (limited to 'components/profile/lib.rs')
-rw-r--r--components/profile/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/profile/lib.rs b/components/profile/lib.rs
index a874ed233bb..f736d408ff1 100644
--- a/components/profile/lib.rs
+++ b/components/profile/lib.rs
@@ -9,6 +9,7 @@
#[macro_use] extern crate log;
+extern crate ipc_channel;
extern crate libc;
#[macro_use]
extern crate profile_traits;