mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	common: Remove memory_util.cpp/.h
Everything from here is completely unused and also written with the notion of supporting 32-bit architecture variants in mind. Given the Switch itself is on a 64-bit architecture, we won't be supporting 32-bit architectures. If we need specific allocation functions in the future, it's likely more worthwhile to new functions for that purpose.
This commit is contained in:
		
							parent
							
								
									902f7b51ac
								
							
						
					
					
						commit
						0242d2b13a
					
				
					 2 changed files with 0 additions and 23 deletions
				
			
		|  | @ -65,8 +65,6 @@ add_library(common STATIC | ||||||
|     logging/text_formatter.cpp |     logging/text_formatter.cpp | ||||||
|     logging/text_formatter.h |     logging/text_formatter.h | ||||||
|     math_util.h |     math_util.h | ||||||
|     memory_util.cpp |  | ||||||
|     memory_util.h |  | ||||||
|     microprofile.cpp |     microprofile.cpp | ||||||
|     microprofile.h |     microprofile.h | ||||||
|     microprofileui.h |     microprofileui.h | ||||||
|  |  | ||||||
|  | @ -1,21 +0,0 @@ | ||||||
| // Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
 |  | ||||||
| // Licensed under GPLv2 or any later version
 |  | ||||||
| // Refer to the license.txt file included.
 |  | ||||||
| 
 |  | ||||||
| #pragma once |  | ||||||
| 
 |  | ||||||
| #include <cstddef> |  | ||||||
| #include <string> |  | ||||||
| 
 |  | ||||||
| void* AllocateExecutableMemory(std::size_t size, bool low = true); |  | ||||||
| void* AllocateMemoryPages(std::size_t size); |  | ||||||
| void FreeMemoryPages(void* ptr, std::size_t size); |  | ||||||
| void* AllocateAlignedMemory(std::size_t size, std::size_t alignment); |  | ||||||
| void FreeAlignedMemory(void* ptr); |  | ||||||
| void WriteProtectMemory(void* ptr, std::size_t size, bool executable = false); |  | ||||||
| void UnWriteProtectMemory(void* ptr, std::size_t size, bool allowExecute = false); |  | ||||||
| std::string MemUsage(); |  | ||||||
| 
 |  | ||||||
| inline int GetPageSize() { |  | ||||||
|     return 4096; |  | ||||||
| } |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue