libtcmalloc_sys/extension.rs
1unsafe extern "C" {
2 /// Return true if `ProcessBackgroundActions` should be called on this platform.
3 pub fn NeedsProcessBackgroundActions() -> bool;
4
5 /// Runs housekeeping actions for the allocator off of the main allocation path.
6 ///
7 /// Should be run in the background thread. May return or may not return.
8 pub fn ProcessBackgroundActions();
9}