mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #4630 from wwylele/memory-no-lock
Memory: don't lock hle mutex in memory read/write
This commit is contained in:
		
						commit
						206413ba7b
					
				
					 1 changed files with 0 additions and 6 deletions
				
			
		|  | @ -182,9 +182,6 @@ T MemorySystem::Read(const VAddr vaddr) { | ||||||
|         return value; |         return value; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     // The memory access might do an MMIO or cached access, so we have to lock the HLE kernel state
 |  | ||||||
|     std::lock_guard<std::recursive_mutex> lock(HLE::g_hle_lock); |  | ||||||
| 
 |  | ||||||
|     PageType type = impl->current_page_table->attributes[vaddr >> PAGE_BITS]; |     PageType type = impl->current_page_table->attributes[vaddr >> PAGE_BITS]; | ||||||
|     switch (type) { |     switch (type) { | ||||||
|     case PageType::Unmapped: |     case PageType::Unmapped: | ||||||
|  | @ -219,9 +216,6 @@ void MemorySystem::Write(const VAddr vaddr, const T data) { | ||||||
|         return; |         return; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     // The memory access might do an MMIO or cached access, so we have to lock the HLE kernel state
 |  | ||||||
|     std::lock_guard<std::recursive_mutex> lock(HLE::g_hle_lock); |  | ||||||
| 
 |  | ||||||
|     PageType type = impl->current_page_table->attributes[vaddr >> PAGE_BITS]; |     PageType type = impl->current_page_table->attributes[vaddr >> PAGE_BITS]; | ||||||
|     switch (type) { |     switch (type) { | ||||||
|     case PageType::Unmapped: |     case PageType::Unmapped: | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue