// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
//! pprof-rs is an integrated profiler for rust program.
/// Define the MAX supported stack depth. TODO: make this variable mutable.
// #[cfg(feature = "large-depth")]
// pub const MAX_DEPTH: usize = 1024;
//
// #[cfg(all(feature = "huge-depth", not(feature = "large-depth")))]
// pub const MAX_DEPTH: usize = 512;
//
// #[cfg(not(any(feature = "large-depth", feature = "huge-depth")))]
pub const MAX_DEPTH: usize = 128;
/// Define the MAX supported thread name length. TODO: make this variable mutable.
pub const MAX_THREAD_NAME: usize = 16;
// pub use self::collector::{Collector, HashCounter};
pub use ;
pub use ;
pub use ;
pub use Report;