diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-23 18:43:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 18:43:45 -0400 |
commit | a5106fb9f52cffab3e526d68f930678900abd692 (patch) | |
tree | ab0f70b87bd486e26a3660cdee8e9fefa923f1c7 /src/common/memory_util.h | |
parent | e61a62066a1d7668a5e6a792463eccf33baf470e (diff) | |
parent | 289adf87acc377a5475c7b629e06f612bdafa15c (diff) |
Merge pull request #1553 from lioncash/mem
common: Remove memory_util.h/.cpp
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 @@ -// 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; -} |