//! 原生内存层:直接虚拟内存与分配追踪 (对标 C# Tsavorite `core/Native/`)
//!
//! - [`DirectVirtualMemory`] / [`DirectVmBlock`] ← `Native/DirectVirtualMemory.cs`:
//! mmap/VirtualAlloc 按需置零大块映射,供哈希索引表等长生命周期单例使用
//! - [`NativeMemoryTracker`] ← `Native/NativeMemoryTracker.cs`:条带化无锁内存记账
//!
//! 扇区对齐缓冲池与扇区对齐数学的本体在 wbase(对标 C# `core/Utilities`
//! 位于依赖图最底层、被 Device/Allocator/TsavoriteLog 平行引用的拓扑),
//! 需要时直接依赖 wbase 的 `pool` / `align` feature。
//!
//! 生产链现状:[`DirectVirtualMemory`] 经 [`crate::HashBuckets`] 撑生产哈希索引
//! 桶数组——wkv 主索引 HashIndex(wkv/src/store.rs)→ table::HashBuckets →
//! buckets::HashBuckets::new 即本层 allocate,分配全程接入 [`NativeMemoryTracker`] 记账。
pub use ;
pub use NativeMemoryTracker;