Merge pull request #1872 from lioncash/proc-info
kernel/process: Set ideal core from metadata
This commit is contained in:
commit
315f3342f7
1 changed files with 1 additions and 0 deletions
|
@ -66,6 +66,7 @@ ResultCode Process::ClearSignalState() {
|
|||
|
||||
void Process::LoadFromMetadata(const FileSys::ProgramMetadata& metadata) {
|
||||
program_id = metadata.GetTitleID();
|
||||
ideal_processor = metadata.GetMainThreadCore();
|
||||
is_64bit_process = metadata.Is64BitProgram();
|
||||
vm_manager.Reset(metadata.GetAddressSpaceType());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue