diff options
| author | 2018-10-23 12:21:31 -0400 | |
|---|---|---|
| committer | 2018-10-23 12:21:34 -0400 | |
| commit | 1291f3f820da6d4e5e4dfce6880b1772c1551af6 (patch) | |
| tree | 03d22e2c2656faebf130493e51df777b1af5e622 /src/common/memory_util.h | |
| parent | Merge pull request #1552 from FearlessTobi/port-4336 (diff) | |
| download | yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar.gz yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar.xz yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.zip | |
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.
Diffstat (limited to 'src/common/memory_util.h')
| -rw-r--r-- | src/common/memory_util.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/common/memory_util.h b/src/common/memory_util.h deleted file mode 100644 index aad071979..000000000 --- a/src/common/memory_util.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | // Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <cstddef> | ||
| 8 | #include <string> | ||
| 9 | |||
| 10 | void* AllocateExecutableMemory(std::size_t size, bool low = true); | ||
| 11 | void* AllocateMemoryPages(std::size_t size); | ||
| 12 | void FreeMemoryPages(void* ptr, std::size_t size); | ||
| 13 | void* AllocateAlignedMemory(std::size_t size, std::size_t alignment); | ||
| 14 | void FreeAlignedMemory(void* ptr); | ||
| 15 | void WriteProtectMemory(void* ptr, std::size_t size, bool executable = false); | ||
| 16 | void UnWriteProtectMemory(void* ptr, std::size_t size, bool allowExecute = false); | ||
| 17 | std::string MemUsage(); | ||
| 18 | |||
| 19 | inline int GetPageSize() { | ||
| 20 | return 4096; | ||
| 21 | } | ||