memscope_rs/platform/
mod.rs

1//! Platform-specific implementations for memory tracking
2//!
3//! Provides optimized implementations for different operating systems
4//! and architectures, ensuring maximum performance and compatibility.
5
6pub mod allocator;
7pub mod memory_info;
8pub mod stack_walker;
9pub mod symbol_resolver;
10
11pub use allocator::{AllocationHook, HookResult, PlatformAllocator};
12pub use memory_info::{MemoryStats, PlatformMemoryInfo, SystemInfo};
13pub use stack_walker::{PlatformStackWalker, StackWalkConfig, WalkResult};
14pub use symbol_resolver::{PlatformSymbolResolver, ResolverConfig, SymbolInfo};