mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 16:25:08 +00:00
Kernel: Improve API names for switching address spaces
- enter_space => enter_address_space - enter_process_paging_scope => enter_process_address_space
This commit is contained in:
parent
298cd57fe7
commit
cd8d52e6ae
6 changed files with 11 additions and 11 deletions
|
@ -14,7 +14,7 @@ ProcessPagingScope::ProcessPagingScope(Process& process)
|
|||
{
|
||||
VERIFY(Thread::current() != nullptr);
|
||||
m_previous_cr3 = read_cr3();
|
||||
MM.enter_process_paging_scope(process);
|
||||
MM.enter_process_address_space(process);
|
||||
}
|
||||
|
||||
ProcessPagingScope::~ProcessPagingScope()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue