Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Native/Runtime/unix/UnixNativeCodeManager.h')
-rw-r--r--src/Native/Runtime/unix/UnixNativeCodeManager.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Native/Runtime/unix/UnixNativeCodeManager.h b/src/Native/Runtime/unix/UnixNativeCodeManager.h
index b8e38fbb0..0b80291b8 100644
--- a/src/Native/Runtime/unix/UnixNativeCodeManager.h
+++ b/src/Native/Runtime/unix/UnixNativeCodeManager.h
@@ -7,12 +7,17 @@
class UnixNativeCodeManager : public ICodeManager
{
TADDR m_moduleBase;
+
+ PTR_VOID m_pvManagedCodeStartRange;
+ UInt32 m_cbManagedCodeRange;
+
PTR_PTR_VOID m_pClasslibFunctions;
UInt32 m_nClasslibFunctions;
public:
UnixNativeCodeManager(TADDR moduleBase,
- PTR_PTR_VOID pClasslibFunctions, UInt32 nClasslibFunctions);
+ PTR_VOID pvManagedCodeStartRange, UInt32 cbManagedCodeRange,
+ PTR_PTR_VOID pClasslibFunctions, UInt32 nClasslibFunctions);
virtual ~UnixNativeCodeManager();