add missing use std::sync::Lazylock to malloc_utils::glibc (#6234)

* add missing use std::sync::Lazylock
This commit is contained in:
João Oliveira
2024-08-08 06:55:47 +01:00
committed by GitHub
parent f126a42b7e
commit aad8727f52

View File

@@ -9,6 +9,7 @@ use parking_lot::Mutex;
use std::env;
use std::os::raw::c_int;
use std::result::Result;
use std::sync::LazyLock;
/// The optimal mmap threshold for Lighthouse seems to be around 128KB.
///