[sgen] DTrace probes for sweep begin/end and concurrent start/finish begin/end.
[mono.git] / data / mono.d
index e2f4153beffb7da57d8f33c743b8d80ddbe9e676..76721151289f4f091c13303179e90a6cc71d5a78 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);
+       probe gc__sweep__end (int generation);
+
+       probe gc__world__stop__begin ();
+       probe gc__world__stop__end ();
+       probe gc__world__restart__begin ();
+       probe gc__world__restart__end ();
+
        probe gc__heap__alloc (uintptr_t addr, uintptr_t len);
        probe gc__heap__free (uintptr_t addr, uintptr_t len);