diff options
author | Aleksey Kladov <[email protected]> | 2021-01-14 11:55:13 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-01-14 11:55:13 +0000 |
commit | 865e05b5b47d3e27e8fe4458662e751e492a0f51 (patch) | |
tree | af450e09e10f59f3825c775c0d5ee0f3424cf57f /crates/profile | |
parent | dd5b3cd6f08ece075d1e3ad7c456b1eb7d289d88 (diff) |
Make printin the backtrace more convenient
Diffstat (limited to 'crates/profile')
-rw-r--r-- | crates/profile/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/profile/src/lib.rs | 15 |
2 files changed, 0 insertions, 17 deletions
diff --git a/crates/profile/Cargo.toml b/crates/profile/Cargo.toml index c5dfdff32..4951f1835 100644 --- a/crates/profile/Cargo.toml +++ b/crates/profile/Cargo.toml | |||
@@ -13,7 +13,6 @@ doctest = false | |||
13 | once_cell = "1.3.1" | 13 | once_cell = "1.3.1" |
14 | cfg-if = "1" | 14 | cfg-if = "1" |
15 | libc = "0.2.73" | 15 | libc = "0.2.73" |
16 | backtrace = { version = "0.3.44", optional = true } | ||
17 | 16 | ||
18 | arena = { path = "../arena", version = "0.0.0" } | 17 | arena = { path = "../arena", version = "0.0.0" } |
19 | 18 | ||
@@ -24,5 +23,4 @@ perf-event = "0.4" | |||
24 | cpu_profiler = [] | 23 | cpu_profiler = [] |
25 | 24 | ||
26 | # Uncomment to enable for the whole crate graph | 25 | # Uncomment to enable for the whole crate graph |
27 | # default = [ "backtrace" ] | ||
28 | # default = [ "cpu_profiler" ] | 26 | # default = [ "cpu_profiler" ] |
diff --git a/crates/profile/src/lib.rs b/crates/profile/src/lib.rs index ab19271c7..aa6ccc36c 100644 --- a/crates/profile/src/lib.rs +++ b/crates/profile/src/lib.rs | |||
@@ -15,21 +15,6 @@ pub use crate::{ | |||
15 | stop_watch::{StopWatch, StopWatchSpan}, | 15 | stop_watch::{StopWatch, StopWatchSpan}, |
16 | }; | 16 | }; |
17 | 17 | ||
18 | /// Prints backtrace to stderr, useful for debugging. | ||
19 | #[cfg(feature = "backtrace")] | ||
20 | pub fn print_backtrace() { | ||
21 | let bt = backtrace::Backtrace::new(); | ||
22 | eprintln!("{:?}", bt); | ||
23 | } | ||
24 | #[cfg(not(feature = "backtrace"))] | ||
25 | pub fn print_backtrace() { | ||
26 | eprintln!( | ||
27 | r#"enable the backtrace feature: | ||
28 | profile = {{ path = "../profile", features = [ "backtrace"] }} | ||
29 | "# | ||
30 | ); | ||
31 | } | ||
32 | |||
33 | thread_local!(static IN_SCOPE: RefCell<bool> = RefCell::new(false)); | 18 | thread_local!(static IN_SCOPE: RefCell<bool> = RefCell::new(false)); |
34 | 19 | ||
35 | /// Allows to check if the current code is withing some dynamic scope, can be | 20 | /// Allows to check if the current code is withing some dynamic scope, can be |