Skip to main content

diskann_platform/linux/
mod.rs

1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5#![cfg_attr(
6    not(test),
7    warn(clippy::panic, clippy::unwrap_used, clippy::expect_used)
8)]
9
10mod perf;
11pub use perf::{
12    get_number_of_processors, get_peak_workingset_size, get_process_cycle_time, get_process_time,
13    get_system_time,
14};
15
16pub mod ssd_io_context;