xo-arena: + mapping DArena ctor from ArenaConfig

This commit is contained in:
Roland Conybeare 2026-02-15 13:09:09 -05:00
commit 27b076ee24

View file

@ -80,7 +80,9 @@ namespace xo {
/** null ctor **/
DArena() = default;
/** ctor from already-mapped (but not committed) address range **/
/** create arena from @p cfg. Will reserve memory for allocation **/
DArena(const ArenaConfig & cfg);
/** ctor from already-mapped (but not committed) address range [lo,hi] **/
DArena(const ArenaConfig & cfg,
size_type page_z,
size_type arena_align_z,