mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	kernel: Rename memory page table set function
This commit is contained in:
		
							parent
							
								
									ed095f3bff
								
							
						
					
					
						commit
						79b837afa7
					
				
					 3 changed files with 4 additions and 4 deletions
				
			
		|  | @ -48,10 +48,10 @@ std::shared_ptr<Process> KernelSystem::GetCurrentProcess() const { | |||
| 
 | ||||
| void KernelSystem::SetCurrentProcess(std::shared_ptr<Process> process) { | ||||
|     current_process = process; | ||||
|     SetCurrentMemPageTable(&process->vm_manager.page_table); | ||||
|     SetCurrentMemoryPageTable(&process->vm_manager.page_table); | ||||
| } | ||||
| 
 | ||||
| void KernelSystem::SetCurrentMemPageTable(Memory::PageTable* page_table) { | ||||
| void KernelSystem::SetCurrentMemoryPageTable(Memory::PageTable* page_table) { | ||||
|     memory.SetCurrentPageTable(page_table); | ||||
|     if (current_cpu != nullptr) { | ||||
|         current_cpu->PageTableChanged(); // notify the CPU the page table in memory has changed
 | ||||
|  |  | |||
|  | @ -207,7 +207,7 @@ public: | |||
|     std::shared_ptr<Process> GetCurrentProcess() const; | ||||
|     void SetCurrentProcess(std::shared_ptr<Process> process); | ||||
| 
 | ||||
|     void SetCurrentMemPageTable(Memory::PageTable* page_table); | ||||
|     void SetCurrentMemoryPageTable(Memory::PageTable* page_table); | ||||
| 
 | ||||
|     void SetCPU(std::shared_ptr<ARM_Interface> cpu); | ||||
| 
 | ||||
|  |  | |||
|  | @ -28,7 +28,7 @@ TestEnvironment::TestEnvironment(bool mutable_memory_) | |||
|     memory->MapIoRegion(*page_table, 0x00000000, 0x80000000, test_memory); | ||||
|     memory->MapIoRegion(*page_table, 0x80000000, 0x80000000, test_memory); | ||||
| 
 | ||||
|     kernel->SetCurrentMemPageTable(page_table); | ||||
|     kernel->SetCurrentMemoryPageTable(page_table); | ||||
| } | ||||
| 
 | ||||
| TestEnvironment::~TestEnvironment() { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue