summaryrefslogtreecommitdiff
path: root/src/gc/gcimpl.h
diff options
context:
space:
mode:
authorMukul Sabharwal <muks@microsoft.com>2019-02-22 15:56:28 -0800
committerJan Kotas <jkotas@microsoft.com>2019-02-22 15:56:28 -0800
commit4932d0f6fa87b9a6e3293aacd35cecedde44d87a (patch)
tree0330e86de295b7d14c8db32478a8aff76147e685 /src/gc/gcimpl.h
parent6a392d9084a1afe8b9861138e5d0e5b688deca44 (diff)
downloadcoreclr-4932d0f6fa87b9a6e3293aacd35cecedde44d87a.tar.gz
coreclr-4932d0f6fa87b9a6e3293aacd35cecedde44d87a.tar.bz2
coreclr-4932d0f6fa87b9a6e3293aacd35cecedde44d87a.zip
Enable FEATURE_BASICFREEZE (#22776)
Diffstat (limited to 'src/gc/gcimpl.h')
-rw-r--r--src/gc/gcimpl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gc/gcimpl.h b/src/gc/gcimpl.h
index e70555da6f..dffe2f17aa 100644
--- a/src/gc/gcimpl.h
+++ b/src/gc/gcimpl.h
@@ -236,6 +236,7 @@ public: // FIX
// frozen segment management functions
virtual segment_handle RegisterFrozenSegment(segment_info *pseginfo);
virtual void UnregisterFrozenSegment(segment_handle seg);
+ virtual bool IsInFrozenSegment(Object *object);
// Event control functions
void ControlEvents(GCEventKeyword keyword, GCEventLevel level);
@@ -303,9 +304,6 @@ protected:
public:
Object * NextObj (Object * object);
-#if defined (FEATURE_BASICFREEZE) && defined (VERIFY_HEAP)
- BOOL IsInFrozenSegment (Object * object);
-#endif // defined (FEATURE_BASICFREEZE) && defined (VERIFY_HEAP)
};
#endif // GCIMPL_H_