summaryrefslogtreecommitdiffstats
path: root/src/common/memory_util.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-23 18:21:31 +0200
committerLioncash <mathew1800@gmail.com>2018-10-23 18:21:34 +0200
commit1291f3f820da6d4e5e4dfce6880b1772c1551af6 (patch)
tree03d22e2c2656faebf130493e51df777b1af5e622 /src/common/memory_util.h
parentMerge pull request #1552 from FearlessTobi/port-4336 (diff)
downloadyuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar
yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar.gz
yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar.bz2
yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar.lz
yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar.xz
yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.tar.zst
yuzu-1291f3f820da6d4e5e4dfce6880b1772c1551af6.zip
Diffstat (limited to '')
-rw-r--r--src/common/memory_util.h21
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 @@
-// 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;
-}