summaryrefslogtreecommitdiff
path: root/src/vm/object.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-02-28 17:28:30 -0800
committerGitHub <noreply@github.com>2018-02-28 17:28:30 -0800
commit17326488d7428fdb548b528cf97f90b547038a95 (patch)
treeb27862f5aedab658dbade492dfeda0f7aa4beefb /src/vm/object.h
parent91d228d940a3f01bd12d904afbf40ea67eed5682 (diff)
downloadcoreclr-17326488d7428fdb548b528cf97f90b547038a95.tar.gz
coreclr-17326488d7428fdb548b528cf97f90b547038a95.tar.bz2
coreclr-17326488d7428fdb548b528cf97f90b547038a95.zip
Delete unnecesary StackCrawlMarks (#16648)
CAS leftovers
Diffstat (limited to 'src/vm/object.h')
-rw-r--r--src/vm/object.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/vm/object.h b/src/vm/object.h
index e6e0c02041..6c342fd917 100644
--- a/src/vm/object.h
+++ b/src/vm/object.h
@@ -1458,9 +1458,6 @@ private:
OBJECTREF m_SynchronizationContext;
OBJECTREF m_Name;
OBJECTREF m_Delegate;
-#ifdef IO_CANCELLATION_ENABLED
- OBJECTREF m_CancellationSignals;
-#endif
OBJECTREF m_ThreadStartArg;
// The next field (m_InternalThread) is declared as IntPtr in the managed
@@ -1474,11 +1471,6 @@ private:
//We need to cache the thread id in managed code for perf reasons.
INT32 m_ManagedThreadId;
- CLR_BOOL m_ExecutionContextBelongsToCurrentScope;
-#ifdef _DEBUG
- CLR_BOOL m_ForbidExecutionContextMutation;
-#endif
-
protected:
// the ctor and dtor can do no useful work.
ThreadBaseObject() {LIMITED_METHOD_CONTRACT;};