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:
authordotnet-bot <dotnet-bot@microsoft.com>2016-08-13 01:32:27 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2016-08-13 01:32:27 +0300
commit498888c96e8fdd15b460c2c61cdea3345443c79e (patch)
tree095d02405ed665f960de3307df861ad460b446d9 /src/Native/Runtime/thread.h
parent270df404698c8c7641d5f0ef503b9f8e3bb549e3 (diff)
Thread Static Inspection support for Project N.
[tfs-changeset: 1622253]
Diffstat (limited to 'src/Native/Runtime/thread.h')
-rw-r--r--src/Native/Runtime/thread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Native/Runtime/thread.h b/src/Native/Runtime/thread.h
index 599a5e969..7b93d72af 100644
--- a/src/Native/Runtime/thread.h
+++ b/src/Native/Runtime/thread.h
@@ -90,7 +90,7 @@ struct ThreadBuffer
// Thread Statics Storage for dynamic types
UInt32 m_numDynamicTypesTlsCells;
- PTR_UInt8* m_pDynamicTypesTlsCells;
+ PTR_PTR_UInt8 m_pDynamicTypesTlsCells;
};
struct ReversePInvokeFrame
@@ -182,6 +182,7 @@ public:
bool IsWithinStackBounds(PTR_VOID p);
PTR_UInt8 AllocateThreadLocalStorageForDynamicType(UInt32 uTlsTypeOffset, UInt32 tlsStorageSize, UInt32 numTlsCells);
+ // mrt100 Debugger (dac) has dependencies on the GetThreadLocalStorageForDynamicType method.
PTR_UInt8 GetThreadLocalStorageForDynamicType(UInt32 uTlsTypeOffset);
PTR_UInt8 GetThreadLocalStorage(UInt32 uTlsIndex, UInt32 uTlsStartOffset);
PTR_UInt8 GetTEB();