From 48f06fb90676765714d08f63b59f15eb9aa9d58b Mon Sep 17 00:00:00 2001 From: Mark Probst Date: Fri, 16 Nov 2012 11:48:05 +0100 Subject: [sgen] More information in sweep and world restart DTrace probes. Pass to the sweep probes whether a full sweep (including memset and resetting mark bitmaps) was performed. Pass to the world restart probes the oldest generation collected during the pause. --- data/mono.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'data') diff --git a/data/mono.d b/data/mono.d index 76721151289..c6447a2a0db 100644 --- a/data/mono.d +++ b/data/mono.d @@ -25,13 +25,13 @@ provider mono { probe gc__concurrent__update__end (int generation); probe gc__concurrent__finish__end (int generation); - probe gc__sweep__begin (int generation); - probe gc__sweep__end (int generation); + probe gc__sweep__begin (int generation, int full_sweep); + probe gc__sweep__end (int generation, int full_sweep); probe gc__world__stop__begin (); probe gc__world__stop__end (); - probe gc__world__restart__begin (); - probe gc__world__restart__end (); + probe gc__world__restart__begin (int generation); + probe gc__world__restart__end (int generation); probe gc__heap__alloc (uintptr_t addr, uintptr_t len); probe gc__heap__free (uintptr_t addr, uintptr_t len); -- cgit v1.2.3