diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-07-14 18:28:57 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-07-24 17:02:17 -0700 |
commit | f10c0761802ed0f77e21d410124ef54239beb48a (patch) | |
tree | c17f2bb6b6ee77c246802a88a5b7acaa40e1f57e /components/profile/lib.rs | |
parent | ed1b6a3513e7546b580693f554a081bc0c7c478a (diff) | |
download | servo-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.rs | 1 |
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; |