acadia/sys/yellowstone/yellowstone.cpp

27 lines
747 B
C++
Raw Normal View History

#include <mammoth/debug.h>
#include <mammoth/endpoint_client.h>
#include <mammoth/init.h>
#include <mammoth/process.h>
#include <zcall.h>
#include "hw/gpt.h"
#include "hw/pcie.h"
#include "yellowstone_server.h"
2023-06-16 23:15:41 -07:00
uint64_t main(uint64_t port_cap) {
dbgln("Yellowstone Initializing.");
check(ParseInitPort(port_cap));
ASSIGN_OR_RETURN(auto server, YellowstoneServer::Create());
Thread server_thread = server->RunServer();
uint64_t vaddr;
check(ZAddressSpaceMap(gSelfVmasCap, 0, gBootDenaliVmmoCap, &vaddr));
ASSIGN_OR_RETURN(YellowstoneClient client, server->CreateClient());
check(SpawnProcessFromElfRegion(vaddr, client.Capability()));
check(server_thread.Join());
dbgln("Yellowstone Finished Successfully.");
return 0;
}