From cfcfc1ac42ecd83e03eefa5f6a142ba2cb060739 Mon Sep 17 00:00:00 2001 From: Andrew Au Date: Mon, 7 Nov 2022 20:58:43 -0800 Subject: [PATCH] BackgroundGC check (#3497) --- src/SOS/Strike/util.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SOS/Strike/util.h b/src/SOS/Strike/util.h index f4183780a..39d943e5a 100644 --- a/src/SOS/Strike/util.h +++ b/src/SOS/Strike/util.h @@ -442,11 +442,13 @@ public: highest_address = dacGCDetails.highest_address; card_table = dacGCDetails.card_table; has_regions = generation_table[0].start_segment != generation_table[1].start_segment; + has_background_gc = dacGCDetails.mark_array != -1; } DacpGcHeapDetails original_heap_details; bool has_poh; bool has_regions; + bool has_background_gc; CLRDATA_ADDRESS heapAddr; // Only filled in in server mode, otherwise NULL CLRDATA_ADDRESS alloc_allocated; -- 2.34.1