Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2017-07-07 18:59:18 +0300
committerAndrew Au <andrewau@microsoft.com>2017-07-07 18:59:18 +0300
commita61fac9dce2b1873a61cbe70489d8c0ecdad3ad4 (patch)
tree9dc81f67e77366aa2c4af1a74cf668b9bb69a518 /src/Native/Runtime/threadstore.inl
parentb5be0e6aac9002f171012ee6c48488d7d43448d9 (diff)
(On behalf of Jan Vorlicek) Thread abort stage 1
[tfs-changeset: 1664997]
Diffstat (limited to 'src/Native/Runtime/threadstore.inl')
-rw-r--r--src/Native/Runtime/threadstore.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/threadstore.inl b/src/Native/Runtime/threadstore.inl
index 1fbf862d5..d6003217b 100644
--- a/src/Native/Runtime/threadstore.inl
+++ b/src/Native/Runtime/threadstore.inl
@@ -36,5 +36,5 @@ EXTERN_C volatile UInt32 RhpTrapThreads;
// static
inline bool ThreadStore::IsTrapThreadsRequested()
{
- return (RhpTrapThreads != 0);
+ return (RhpTrapThreads & (UInt32)TrapThreadsFlags::TrapThreads) != 0;
}