summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityam@microsoft.com>2015-08-07 19:23:47 -0700
committerAditya Mandaleeka <adityam@microsoft.com>2015-08-13 12:25:15 -0700
commit7c102f1ff7e3c49bd7d2f8f972ca3dcca3f5b48e (patch)
tree6134ee6df92dba13629f830f09e814ce99ebaa38 /src/debug
parentd59491c66042cc1746b8a73056c14f4b847fab8c (diff)
downloadcoreclr-7c102f1ff7e3c49bd7d2f8f972ca3dcca3f5b48e.tar.gz
coreclr-7c102f1ff7e3c49bd7d2f8f972ca3dcca3f5b48e.tar.bz2
coreclr-7c102f1ff7e3c49bd7d2f8f972ca3dcca3f5b48e.zip
Remove temporary ifdef and refactor/simplify
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/daccess/dacdbiimplstackwalk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/daccess/dacdbiimplstackwalk.cpp b/src/debug/daccess/dacdbiimplstackwalk.cpp
index 294aeb3da8..8c59ef7fff 100644
--- a/src/debug/daccess/dacdbiimplstackwalk.cpp
+++ b/src/debug/daccess/dacdbiimplstackwalk.cpp
@@ -1303,7 +1303,7 @@ bool DacDbiInterfaceImpl::IsThreadSuspendedOrHijacked(VMPTR_Thread vmThread)
return true;
}
-#if defined(FEATURE_HIJACK) || defined(FEATURE_UNIX_GC_REDIRECT_HIJACK)
+#ifdef FEATURE_HIJACK
if ((ts & Thread::TS_Hijacked) != 0)
{
return true;