early-access version 3453

This commit is contained in:
pineappleEA
2023-03-13 04:44:48 +01:00
parent 5e818ba7dd
commit 3114efd039
110 changed files with 270 additions and 306 deletions

View File

@@ -363,7 +363,7 @@ Result KProcess::LoadFromMetadata(const FileSys::ProgramMetadata& metadata, std:
code_size + m_system_resource_size);
R_RETURN(ResultLimitReached);
}
// Initialize proces address space
// Initialize process address space
if (const Result result{m_page_table.InitializeForProcess(
metadata.GetAddressSpaceType(), false, false, false, KMemoryManager::Pool::Application,
0x8000000, code_size, std::addressof(m_kernel.GetAppSystemResource()),

View File

@@ -245,7 +245,7 @@ public:
m_total_process_running_time_ticks += ticks;
}
/// Gets the process schedule count, used for thread yelding
/// Gets the process schedule count, used for thread yielding
s64 GetScheduledCount() const {
return m_schedule_count;
}