[sgen] More information in sweep and world restart DTrace probes.
[mono.git] / data / mono.d
index 34daae60de3f8e2c88891dd5d06d28972953353e..c6447a2a0dbf70c0589890838e5339abb8e52075 100644 (file)
@@ -19,10 +19,19 @@ provider mono {
        probe gc__begin (int generation);
        probe gc__end (int generation);
 
+       probe gc__concurrent__start__begin (int generation);
+       probe gc__concurrent__start__end (int generation);
+       probe gc__concurrent__update__finish__begin (int generation);
+       probe gc__concurrent__update__end (int generation);
+       probe gc__concurrent__finish__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);