Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMark Probst <mark.probst@gmail.com>2012-11-07 20:06:43 +0400
committerMark Probst <mark.probst@gmail.com>2012-12-09 18:02:47 +0400
commitbd5b216df955ac8f6ad7b465cbcb53fd4ef78e1c (patch)
tree14ac2b05836ba78775d2de81d8af04457fe5d467 /data
parent76087cedea5ab405ac34179c6933af8ede48f2d3 (diff)
[sgen] DTrace probes for sweep begin/end and concurrent start/finish begin/end.
Diffstat (limited to 'data')
-rw-r--r--data/mono.d9
1 files changed, 9 insertions, 0 deletions
diff --git a/data/mono.d b/data/mono.d
index 34daae60de3..76721151289 100644
--- a/data/mono.d
+++ b/data/mono.d
@@ -19,6 +19,15 @@ 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 ();