summaryrefslogtreecommitdiff
path: root/src/vm/object.h
diff options
context:
space:
mode:
authorgeoffkizer <geoffrek>2016-02-11 11:44:19 -0800
committergeoffkizer <geoffrek>2016-05-10 21:08:47 -0700
commit5ede820db415f083a0086d9f3e5e5cdd64ccce61 (patch)
tree74870fa4ca408313e842c7ecfdc3d481725a00f6 /src/vm/object.h
parent3496df6d9dbfa5fded802ab90b99a9545a43bc74 (diff)
downloadcoreclr-5ede820db415f083a0086d9f3e5e5cdd64ccce61.tar.gz
coreclr-5ede820db415f083a0086d9f3e5e5cdd64ccce61.tar.bz2
coreclr-5ede820db415f083a0086d9f3e5e5cdd64ccce61.zip
Improve performance of ExecutionContextSwitcher to help async invocation perf
Diffstat (limited to 'src/vm/object.h')
-rw-r--r--src/vm/object.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vm/object.h b/src/vm/object.h
index f9e1be17cb..ff2e0b42cf 100644
--- a/src/vm/object.h
+++ b/src/vm/object.h
@@ -2075,7 +2075,10 @@ private:
#ifdef FEATURE_REMOTING
OBJECTREF m_ExposedContext;
#endif
-#ifndef FEATURE_CORECLR
+#ifdef FEATURE_CORECLR
+ OBJECTREF m_ExecutionContext;
+ OBJECTREF m_SynchronizationContext;
+#else
EXECUTIONCONTEXTREF m_ExecutionContext;
#endif
OBJECTREF m_Name;