//! Substrate for adaptive primitives.
//!
//! The four core abstractions actually consumed by the IPC stack:
//!
//! - [`HandshakeHeader`] - per-instance generation counter and in-flight tracker.
//! - [`ObservationRing`] - TLS-local ring buffer for op observations.
//! - [`migration`] - dual-stack migration protocol primitives.
//! - [`Marshal`] - type-system contract for "this value can cross an
//! address-space boundary byte-identically." Stricter than `Send`;
//! required by every cross-process primitive in `subetha-cxc` that
//! stores typed values (e.g. `SharedDeque<T>`).
//!
//! Plus the architecture catalog ([`Axis`] / [`AxisMask`]) for direction
//! signatures and the [`cpuid`] helpers for CPU-feature detection.
//!
//! Every adaptive primitive in `subetha-pointers` and `subetha-cxc`
//! carries a `HandshakeHeader` at a known offset.
// The crate links std: the per-thread sequential id machinery in
// [`observation::thread_id`] needs `thread_local!`.
pub use ;
pub use ;
pub use HandshakeHeader;
pub use ;
pub use ;
pub use ;