temp: comment out hardened_malloc code
sorry but this is just non-functional in our build system, i haven't had time to figure out why nix doesn't like what i'm doing with it, and i haven't heard anyone using this (the user who i anticipated would use this has not updated their conduwuit in many months) Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
ddf327e8b6
commit
9e9b256b83
1 changed files with 6 additions and 4 deletions
|
@ -7,10 +7,12 @@ pub mod je;
|
|||
pub use je::{memory_stats, memory_usage};
|
||||
|
||||
// hardened_malloc
|
||||
#[cfg(all(not(target_env = "msvc"), feature = "hardened_malloc", target_os = "linux", not(feature = "jemalloc")))]
|
||||
pub mod hardened;
|
||||
#[cfg(all(not(target_env = "msvc"), feature = "hardened_malloc", target_os = "linux", not(feature = "jemalloc")))]
|
||||
pub use hardened::{memory_stats, memory_usage};
|
||||
//#[cfg(all(not(target_env = "msvc"), feature = "hardened_malloc", target_os =
|
||||
//#[cfg(all(not(target_env "linux", not(feature = "jemalloc")))]
|
||||
//pub mod hardened;
|
||||
//#[cfg(all(not(target_env = "msvc"), feature = "hardened_malloc", target_os =
|
||||
//#[cfg(all(not(target_env "linux", not(feature = "jemalloc")))]
|
||||
//pub use hardened::{memory_stats, memory_usage};
|
||||
|
||||
// default, enabled when none or multiple of the above are enabled
|
||||
#[cfg(any(
|
||||
|
|
Loading…
Add table
Reference in a new issue