summaryrefslogtreecommitdiff
path: root/src/vm/stubmgr.h
diff options
context:
space:
mode:
authorFilip Navara <filip.navara@gmail.com>2019-01-23 22:13:01 +0100
committerJan Kotas <jkotas@microsoft.com>2019-01-23 13:13:01 -0800
commita28b25aacdcd2adb0fdfa70bd869f53ba6565976 (patch)
treed37eeacbb212a5633edabf93300dbcd18980f13f /src/vm/stubmgr.h
parent797888982e264e2ecfbc436f782f2f6704644e84 (diff)
downloadcoreclr-a28b25aacdcd2adb0fdfa70bd869f53ba6565976.tar.gz
coreclr-a28b25aacdcd2adb0fdfa70bd869f53ba6565976.tar.bz2
coreclr-a28b25aacdcd2adb0fdfa70bd869f53ba6565976.zip
Remove all traces of FEATURE_STACK_PROBE. (#22149)
Diffstat (limited to 'src/vm/stubmgr.h')
-rw-r--r--src/vm/stubmgr.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/vm/stubmgr.h b/src/vm/stubmgr.h
index fc77ca9293..8087d8bb89 100644
--- a/src/vm/stubmgr.h
+++ b/src/vm/stubmgr.h
@@ -93,7 +93,6 @@ public:
// The addr is in unmanaged code. Used for Step-in from managed to native.
void InitForUnmanaged(PCODE addr)
{
- STATIC_CONTRACT_SO_TOLERANT;
this->type = TRACE_UNMANAGED;
this->address = addr;
this->stubManager = NULL;
@@ -102,7 +101,6 @@ public:
// The addr is inside jitted code (eg, there's a JitManaged that will claim it)
void InitForManaged(PCODE addr)
{
- STATIC_CONTRACT_SO_TOLERANT;
this->type = TRACE_MANAGED;
this->address = addr;
this->stubManager = NULL;
@@ -111,7 +109,6 @@ public:
// Initialize for an unmanaged entry stub.
void InitForUnmanagedStub(PCODE addr)
{
- STATIC_CONTRACT_SO_TOLERANT;
this->type = TRACE_ENTRY_STUB;
this->address = addr;
this->stubManager = NULL;
@@ -120,7 +117,6 @@ public:
// Initialize for a stub.
void InitForStub(PCODE addr)
{
- STATIC_CONTRACT_SO_TOLERANT;
this->type = TRACE_STUB;
this->address = addr;
this->stubManager = NULL;
@@ -136,7 +132,6 @@ public:
// call pStubManager->TraceManager() to get the next TraceDestination.
void InitForManagerPush(PCODE addr, StubManager * pStubManager)
{
- STATIC_CONTRACT_SO_TOLERANT;
this->type = TRACE_MGR_PUSH;
this->address = addr;
this->stubManager = pStubManager;