Skip to main content

xet_runtime/core/
mod.rs

1pub mod common;
2pub mod exports;
3
4pub mod runtime;
5
6pub use common::XetCommon;
7pub use runtime::{RuntimeMode, XetRuntime, check_sigint_shutdown};
8
9pub mod sync_primatives;
10pub use sync_primatives::{SyncJoinHandle, spawn_os_thread};
11
12pub mod par_utils;
13
14pub mod file_handle_limits;
15
16#[cfg(not(target_family = "wasm"))]
17mod cache_dir;
18
19#[cfg(not(target_family = "wasm"))]
20pub use cache_dir::xet_cache_root;
21
22mod config;
23
24pub use config::xet_config;