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-05 15:08:41 +0400
committerMark Probst <mark.probst@gmail.com>2012-12-09 18:02:46 +0400
commit0654f84b19c48b3455586cbbbaaac1cd81cbee16 (patch)
tree697b4394bf0dfd00adb683fc4dbc43ec28a3bf68 /data
parent5753461d10bf87e2e2526850747b2f9fc0738f98 (diff)
[sgen] DTrace probes for world stop/restart.
Diffstat (limited to 'data')
-rw-r--r--data/mono.d5
1 files changed, 5 insertions, 0 deletions
diff --git a/data/mono.d b/data/mono.d
index e2f4153beff..34daae60de3 100644
--- a/data/mono.d
+++ b/data/mono.d
@@ -19,6 +19,11 @@ provider mono {
probe gc__begin (int generation);
probe gc__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);