[Local GC] Use standard C++ types (bool) and consistent types (void*) on the interfac...
authorSean Gillespie <sean@swgillespie.me>
Tue, 28 Mar 2017 16:59:04 +0000 (09:59 -0700)
committerGitHub <noreply@github.com>
Tue, 28 Mar 2017 16:59:04 +0000 (09:59 -0700)
commit7e4afb4fbf900b789f53ccb816c6ddba7807de68
treeabd92570df8d5ac52a5725f8f7bf1f220cb0c72f
parente23bfb25d4fde28d2f1648ae381f5e44538b1827
[Local GC] Use standard C++ types (bool) and consistent types (void*) on the interface (#10463)

* [Local GC] BOOL -> bool on IGCHeap

* [Local GC] size_t -> void* on IGCHeap

* [Local GC] Silence warnings by being explicit about BOOl -> bool conversions

* Address code review feedback: FinalizeAppDomain BOOL -> bool

* Fix warnings

* Address code review feedback:
  1) Fix a missed default parameter (FALSE) on a parameter of type bool,
  2) Fix invocations of the diagnostic callbacks to use boolean literals
     instead of TRUE and FALSE,
  3) Fix various invocations of GC interface methods in the VM to use
     boolean literals instead of TRUE and FALSE

* Address code review feedback: fix inconsistency
23 files changed:
src/gc/gc.cpp
src/gc/gc.h
src/gc/gcee.cpp
src/gc/gcimpl.h
src/gc/gcinterface.h
src/gc/gcpriv.h
src/gc/gcscan.h
src/gc/objecthandle.cpp
src/gc/objecthandle.h
src/gc/sample/gcenv.ee.cpp
src/inc/profilepriv.h
src/vm/commemoryfailpoint.cpp
src/vm/comutilnative.cpp
src/vm/eventtrace.cpp
src/vm/finalizerthread.cpp
src/vm/gcenv.ee.cpp
src/vm/gcheaputilities.h
src/vm/gcscan.h [deleted file]
src/vm/object.cpp
src/vm/proftoeeinterfaceimpl.cpp
src/vm/rcwwalker.cpp
src/vm/threads.cpp
src/vm/threadsuspend.cpp