File size: 389 Bytes
9425aed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | -- Sovereign Event Bus (SEB) - Write-Ahead Log Specification
-- Ada 2012 / SPARK Level 4
--
-- mmap-backed persistent storage with WORM integrity.
pragma SPARK_Mode (On);
with SEB_Types;
use SEB_Types;
package SEB_WAL is
-- No public operations; all access through SEB_Kernel interface
-- This package is internal to the kernel implementation.
end SEB_WAL;
|