[victoria] Create and start VictoriaFalls process

This commit is contained in:
Drew Galbraith 2023-06-22 00:22:59 -07:00
parent dc63084d61
commit f0e8ce14a4
12 changed files with 66 additions and 16 deletions

View file

@ -28,6 +28,11 @@ uint64_t main(uint64_t port_cap) {
check(reader.ParsePartitionTables());
check(ZAddressSpaceMap(gSelfVmasCap, 0, gBootVictoriaFallsVmmoCap, &vaddr));
auto error_or = SpawnProcessFromElfRegion(vaddr);
if (!error_or) {
check(error_or.error());
}
dbgln("Yellowstone Finished Successfully.");
return 0;
}