MCPcopy Create free account
hub / github.com/amwatson/CitraVR / CreateCodeSet

Method CreateCodeSet

src/core/hle/kernel/process.cpp:71–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69SERIALIZE_IMPL(Process)
70
71std::shared_ptr<CodeSet> KernelSystem::CreateCodeSet(std::string name, u64 program_id) {
72 auto codeset{std::make_shared<CodeSet>(*this)};
73
74 codeset->name = std::move(name);
75 codeset->program_id = program_id;
76
77 return codeset;
78}
79
80CodeSet::CodeSet(KernelSystem& kernel) : Object(kernel) {}
81CodeSet::~CodeSet() {}

Callers 5

LoadIntoMethod · 0.80
LoadExecMethod · 0.80
Load3DSXFileFunction · 0.80
hle_ipc.cppFile · 0.80
memory.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected