From 882dc0792904ec47d57a356a3c9e8fc1a240cc73 Mon Sep 17 00:00:00 2001
From: bunnei <bunneidev@gmail.com>
Date: Sat, 5 Jul 2014 10:12:27 -0400
Subject: [PATCH] Memory: Removed deprecated MapBlock_Shared function.

---
 src/core/mem_map.h         |  8 --------
 src/core/mem_map_funcs.cpp | 22 ----------------------
 2 files changed, 30 deletions(-)

diff --git a/src/core/mem_map.h b/src/core/mem_map.h
index 70a8dedcf..12941f558 100644
--- a/src/core/mem_map.h
+++ b/src/core/mem_map.h
@@ -149,14 +149,6 @@ void WriteBlock(const u32 addr, const u8* data, const int size);
 
 u8* GetPointer(const u32 Address);
 
-/**
- * Maps a block of memory in shared memory
- * @param handle Handle to map memory block for
- * @param addr Address to map memory block to
- * @param permissions Memory map permissions
- */
-u32 MapBlock_Shared(u32 handle, u32 addr,u32 permissions) ;
-
 /**
  * Maps a block of memory on the heap
  * @param size Size of block in bytes
diff --git a/src/core/mem_map_funcs.cpp b/src/core/mem_map_funcs.cpp
index d0ca85ccd..0342122df 100644
--- a/src/core/mem_map_funcs.cpp
+++ b/src/core/mem_map_funcs.cpp
@@ -177,28 +177,6 @@ u8 *GetPointer(const u32 addr) {
     }
 }
 
-/**
- * Maps a block of memory in shared memory
- * @param handle Handle to map memory block for
- * @param addr Address to map memory block to
- * @param permissions Memory map permissions
- */
-u32 MapBlock_Shared(u32 handle, u32 addr,u32 permissions) {
-    MemoryBlock block;
-    
-    block.handle        = handle;
-    block.base_address  = addr;
-    block.permissions   = permissions;
-    
-    if (g_shared_map.size() > 0) {
-        const MemoryBlock last_block = g_shared_map.rbegin()->second;
-        block.address = last_block.address + last_block.size;
-    }
-    g_shared_map[block.GetVirtualAddress()] = block;
-
-    return block.GetVirtualAddress();
-}
-
 /**
  * Maps a block of memory on the heap
  * @param size Size of block in bytes