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-09-21 21:54:21 +0400
committerMark Probst <mark.probst@gmail.com>2012-09-29 01:18:17 +0400
commitb6463f1e142a3f5486a253ea34e05876778d93ee (patch)
tree087c3aa01e86a3e4e4b9728c15dc506f7f30e0b9 /data
parent2aa252d522c57c90389a43983543937c51021621 (diff)
[dtrace] Probes for degraded and mature allocation.
Diffstat (limited to 'data')
-rw-r--r--data/mono.d3
1 files changed, 3 insertions, 0 deletions
diff --git a/data/mono.d b/data/mono.d
index e18d4eb12e9..efd3a6cb055 100644
--- a/data/mono.d
+++ b/data/mono.d
@@ -27,6 +27,9 @@ provider mono {
probe gc__nursery__tlab__alloc (void *addr, uintptr_t len);
probe gc__nursery__obj__alloc (void *addr, uintptr_t size, char *class_name);
+
+ probe gc__major__obj__alloc__degraded (void *addr, uintptr_t size, char *class_name);
+ probe gc__major__obj__alloc__mature (void *addr, uintptr_t size, char *class_name);
};
#pragma D attributes Evolving/Evolving/Common provider mono provider