xo-gc: refactor, focus on DX1Collector+MutationLogState

This commit is contained in:
Roland Conybeare 2026-04-02 21:23:46 -04:00
commit 43369ea2fc
12 changed files with 140 additions and 57 deletions

View file

@ -0,0 +1,22 @@
/** @file GCObjectStore.cpp
*
* @author Roland Conybeare, Apr 2026
**/
#include "GCObjectStore.hpp"
namespace xo {
namespace mm {
GCObjectStoreConfig::GCObjectStoreConfig(const ArenaConfig & arena_cfg,
std::uint32_t ngen,
bool debug_flag)
: arena_config_{arena_cfg},
n_generation_{ngen},
debug_flag_{debug_flag}
{}
} /*namespace mm*/
} /*namespace xo*/
/* end GCObjectStore.cpp */