[vmkit-commits] [vmkit] r57959 -	/vmkit/trunk/include/mvm/MvmMemoryManager.h
    Nicolas Geoffray 
    nicolas.geoffray at lip6.fr
       
    Tue Oct 21 22:28:06 PDT 2008
    
    
  
Author: geoffray
Date: Wed Oct 22 00:28:05 2008
New Revision: 57959
URL: http://llvm.org/viewvc/llvm-project?rev=57959&view=rev
Log:
Add new virutal method.
Modified:
    vmkit/trunk/include/mvm/MvmMemoryManager.h
Modified: vmkit/trunk/include/mvm/MvmMemoryManager.h
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/include/mvm/MvmMemoryManager.h?rev=57959&r1=57958&r2=57959&view=diff
==============================================================================
--- vmkit/trunk/include/mvm/MvmMemoryManager.h (original)
+++ vmkit/trunk/include/mvm/MvmMemoryManager.h Wed Oct 22 00:28:05 2008
@@ -102,6 +102,10 @@
     realMemoryManager->setMemoryExecutable();
   }
 
+  virtual unsigned char* allocateSpace(intptr_t Size, unsigned int Align) {
+    return realMemoryManager->allocateSpace(Size, Align);
+  }
+
 };
 
 } // End mvm namespace
    
    
More information about the vmkit-commits
mailing list