[sgen] More information in sweep and world restart DTrace probes.
[mono.git] / data / mono.d
index e2f4153beffb7da57d8f33c743b8d80ddbe9e676..c6447a2a0dbf70c0589890838e5339abb8e52075 100644 (file)
@@ -19,6 +19,20 @@ 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 (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);