diff options
author | David Mason <davmason@microsoft.com> | 2018-03-13 12:40:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 12:40:30 -0700 |
commit | 49815bbb020eb3aae0a01f5b240fb3ee573c72ff (patch) | |
tree | 46f42d3acd8015c6067e07df6d5828e16793d7c1 | |
parent | 41c02957420988f42275c789e06de32a3a3913b9 (diff) | |
download | coreclr-49815bbb020eb3aae0a01f5b240fb3ee573c72ff.tar.gz coreclr-49815bbb020eb3aae0a01f5b240fb3ee573c72ff.tar.bz2 coreclr-49815bbb020eb3aae0a01f5b240fb3ee573c72ff.zip |
change bool to bool (#16914)
-rw-r--r-- | src/gc/gc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gc/gc.cpp b/src/gc/gc.cpp index 3bc2809564..a23edb9dff 100644 --- a/src/gc/gc.cpp +++ b/src/gc/gc.cpp @@ -1820,7 +1820,7 @@ retry: #ifdef SYNCHRONIZATION_STATS (spin_lock->num_switch_thread)++; #endif //SYNCHRONIZATION_STATS - BOOL cooperative_mode = gc_heap::enable_preemptive (); + bool cooperative_mode = gc_heap::enable_preemptive (); GCToOSInterface::YieldThread(0); @@ -26889,7 +26889,7 @@ void gc_heap::bgc_thread_function() BOOL do_exit = FALSE; - BOOL cooperative_mode = TRUE; + bool cooperative_mode = true; bgc_thread_id.SetToCurrentThread(); dprintf (1, ("bgc_thread_id is set to %x", (uint32_t)GCToOSInterface::GetCurrentThreadIdForLogging())); while (1) |