xo-reader2 stack: refactor for ssm file location

This commit is contained in:
Roland Conybeare 2026-03-25 17:11:46 -04:00
commit 7789218ff2

View file

@ -93,7 +93,7 @@ namespace xo {
obj<AAllocator> mm = rcx.allocator();
StringTable * stbl = rcx.stringtable();
scope log(XO_DEBUG(true));
scope log(XO_DEBUG(false));
bool ok = true;
@ -130,6 +130,11 @@ namespace xo {
ObjectPrimitives::make_fn_n_args_pm(mm, stbl),
flags & InstallFlags::f_generalpurpose));
ok = ok & (PrimitiveRegistry::install_aux
(sink,
GcPrimitives::make_request_gc_pm(mm, stbl),
flags & InstallFlags::f_generalpurpose));
return ok;
}