aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_prof
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-07-17 16:06:48 +0100
committerbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-07-17 16:06:48 +0100
commit517692de437a250d3a8758594cae69f4fe4216a9 (patch)
tree328d88c4f7bedae98e5a65f168dcb1febc8b1791 /crates/ra_prof
parentc7ceea82a5ab8aabab2f98e7c1e1ec94e82087c2 (diff)
parent5e9198f809bb0935e3d2506a8c93597191e1a57c (diff)
Merge #1538
1538: jemallocator 0.3 r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]>
Diffstat (limited to 'crates/ra_prof')
-rw-r--r--crates/ra_prof/Cargo.toml4
-rw-r--r--crates/ra_prof/src/memory_usage.rs6
2 files changed, 5 insertions, 5 deletions
diff --git a/crates/ra_prof/Cargo.toml b/crates/ra_prof/Cargo.toml
index e986019ca..84dcc9813 100644
--- a/crates/ra_prof/Cargo.toml
+++ b/crates/ra_prof/Cargo.toml
@@ -10,8 +10,8 @@ once_cell = "0.2.0"
10itertools = "0.8.0" 10itertools = "0.8.0"
11backtrace = "0.3.28" 11backtrace = "0.3.28"
12cpuprofiler = { version = "0.0.3", optional = true } 12cpuprofiler = { version = "0.0.3", optional = true }
13jemallocator = { version = "0.1.9", optional = true } 13jemallocator = { version = "0.3.2", optional = true }
14jemalloc-ctl = { version = "0.2.0", optional = true } 14jemalloc-ctl = { version = "0.3.2", optional = true }
15 15
16 16
17[features] 17[features]
diff --git a/crates/ra_prof/src/memory_usage.rs b/crates/ra_prof/src/memory_usage.rs
index 7f857942d..8e8cb7299 100644
--- a/crates/ra_prof/src/memory_usage.rs
+++ b/crates/ra_prof/src/memory_usage.rs
@@ -8,10 +8,10 @@ pub struct MemoryUsage {
8impl MemoryUsage { 8impl MemoryUsage {
9 #[cfg(feature = "jemalloc")] 9 #[cfg(feature = "jemalloc")]
10 pub fn current() -> MemoryUsage { 10 pub fn current() -> MemoryUsage {
11 jemalloc_ctl::epoch().unwrap(); 11 jemalloc_ctl::epoch::advance().unwrap();
12 MemoryUsage { 12 MemoryUsage {
13 allocated: Bytes(jemalloc_ctl::stats::allocated().unwrap()), 13 allocated: Bytes(jemalloc_ctl::stats::allocated::read().unwrap()),
14 resident: Bytes(jemalloc_ctl::stats::resident().unwrap()), 14 resident: Bytes(jemalloc_ctl::stats::resident::read().unwrap()),
15 } 15 }
16 } 16 }
17 17