diff options
author | Sean Gillespie <segilles@microsoft.com> | 2017-10-26 10:46:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 10:46:21 -0700 |
commit | 165ffa6a0bb2d8b57e83aa95a395a798ad5f5f4f (patch) | |
tree | c72c44d082e2ade2f30f04a8e31f44d26173a51c /src/gc/env/gcenv.base.h | |
parent | 47b0adbb645b0e1072703be106042eb5c832601d (diff) | |
download | coreclr-165ffa6a0bb2d8b57e83aa95a395a798ad5f5f4f.tar.gz coreclr-165ffa6a0bb2d8b57e83aa95a395a798ad5f5f4f.tar.bz2 coreclr-165ffa6a0bb2d8b57e83aa95a395a798ad5f5f4f.zip |
[Local GC] Move IsGCThread and IsGCSpecialThread to GCToEEInterface (#14685)
* [Local GC] Move IsGCThread and IsGCSpecialThread to GCToEEInterface
* Fix the windows and sample builds
Diffstat (limited to 'src/gc/env/gcenv.base.h')
-rw-r--r-- | src/gc/env/gcenv.base.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gc/env/gcenv.base.h b/src/gc/env/gcenv.base.h index fb2f9da488..6c878c1c21 100644 --- a/src/gc/env/gcenv.base.h +++ b/src/gc/env/gcenv.base.h @@ -420,12 +420,6 @@ typedef PTR_PTR_Object PTR_UNCHECKED_OBJECTREF; class Thread; -inline bool IsGCSpecialThread() -{ - // [LOCALGC TODO] this is not correct - return false; -} - inline bool dbgOnly_IsSpecialEEThread() { return false; @@ -454,12 +448,6 @@ namespace ETW } GC_ROOT_KIND; }; -inline bool IsGCThread() -{ - // [LOCALGC TODO] this is not correct - return false; -} - inline bool FitsInU1(uint64_t val) { return val == (uint64_t)(uint8_t)val; |