From: David Mason Date: Tue, 13 Mar 2018 19:40:30 +0000 (-0700) Subject: change bool to bool (#16914) X-Git-Tag: accepted/tizen/unified/20190422.045933~2665 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49815bbb020eb3aae0a01f5b240fb3ee573c72ff;p=platform%2Fupstream%2Fcoreclr.git change bool to bool (#16914) --- diff --git a/src/gc/gc.cpp b/src/gc/gc.cpp index 3bc2809..a23edb9 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)