//! Admission control for the unified graph architecture.
//!
//! This module provides back-pressure control for the delta buffer:
//! - [`SharedBufferState`]: Atomic counters shared between buffer and controller
//! - [`Reservation`]: A granted allocation of bytes and operations
//! - [`ReservationGuard`]: RAII wrapper ensuring proper commit/abort
//! - [`AdmissionController`]: Reservation-based admission control (Step 12)
//! - [`BackPressureController`]: Hard/soft limit enforcement (Step 16b)
//!
//! # Design Principles
//!
//! - **Reservation-based**: Writers must reserve capacity before writing
//! - **RAII safety**: `ReservationGuard` ensures reservations cannot leak
//! - **Underflow protection**: Active guards prevent counter reset
//! - **Atomic operations**: All counters are atomic for concurrent access
//! - **Dual CAS loops**: Lock-free concurrent reservation with rollback
//! - **Back-pressure limits**: Soft limit signals compaction, hard limit rejects writes
pub use ;
pub use ;
pub use ;
pub use ;