1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Concurrent tier (Phase 3b).
//!
//! Re-exports only — no logic lives here (per the one-export-per-file rule).
//!
//! # Status: legacy research-tier
//!
//! The concurrent region family ([`EpochRegion`], [`LockFreeRegion`],
//! [`ShardedRegion`]) is now legacy: it is superseded by the production
//! `alloc-xthread` cross-thread free path for the allocator face. These types
//! are kept under the existing `experimental` feature for backward compatibility
//! and as a research baseline, but no new development is planned on them.
//!
//! [`PinnedRunner`] (under the `pinning` feature) remains useful on its own as a
//! thin safe wrapper over `core_affinity` for thread-per-core dispatch and is
//! NOT deprecated.
pub use EpochHandle;
pub use EpochRegion;
pub use LockFreeHandle;
pub use LockFreeRegion;
pub use ShardedHandle;
pub use ShardedRegion;
pub use PinnedRunner;