summaryrefslogtreecommitdiff
path: root/src/debug/ee/frameinfo.cpp
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityam@microsoft.com>2015-06-16 15:25:20 -0700
committerAditya Mandaleeka <adityam@microsoft.com>2015-08-13 12:25:06 -0700
commit02b0ce2b432d3e37769c0f46d315a91c83a0db77 (patch)
tree6361f4328adeb1f2779fa9c7fcb91f78bb00826e /src/debug/ee/frameinfo.cpp
parent34ca4064d690fbdb5b99647ec7a00ac603808192 (diff)
downloadcoreclr-02b0ce2b432d3e37769c0f46d315a91c83a0db77.tar.gz
coreclr-02b0ce2b432d3e37769c0f46d315a91c83a0db77.tar.bz2
coreclr-02b0ce2b432d3e37769c0f46d315a91c83a0db77.zip
Implement GC Suspension for Unix
Diffstat (limited to 'src/debug/ee/frameinfo.cpp')
-rw-r--r--src/debug/ee/frameinfo.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/debug/ee/frameinfo.cpp b/src/debug/ee/frameinfo.cpp
index d4dc6838e4..5c0d864a85 100644
--- a/src/debug/ee/frameinfo.cpp
+++ b/src/debug/ee/frameinfo.cpp
@@ -1908,7 +1908,7 @@ bool IsInWaitSleepJoin(Thread * pThread)
//-----------------------------------------------------------------------------
// Decide if we should send an UM leaf chain.
-// This geoes through a bunch of heuristics.
+// This goes through a bunch of heuristics.
// The driving guidelines here are:
// - we try not to send an UM chain if it's just internal mscorwks stuff
// and we know it can't have native user code.
@@ -1955,8 +1955,7 @@ bool ShouldSendUMLeafChain(Thread * pThread)
return false;
}
-#ifdef FEATURE_HIJACK
- // Hijacked is only on non-pal.
+#ifdef FEATURE_HIJACK || FEATURE_UNIX_GC_REDIRECT_HIJACK
if ((ts & Thread::TS_Hijacked) != 0)
{
return false;