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-22 17:48:58 +0400
committerMark Probst <mark.probst@gmail.com>2012-09-29 01:18:18 +0400
commit072a3cd5439bb5313f9e46a181a33c1649cfb90f (patch)
treead7d261730f966dfa42bfdde3074610a2308cf93 /data
parent20bdda233df9fea3775fac09ddfd4f04648c9885 (diff)
[dtrace] Probes for large and pinned allocation.
Diffstat (limited to 'data')
-rw-r--r--data/mono.d2
1 files changed, 2 insertions, 0 deletions
diff --git a/data/mono.d b/data/mono.d
index be871db851c..3542f6367f3 100644
--- a/data/mono.d
+++ b/data/mono.d
@@ -28,6 +28,8 @@ 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__large (void *addr, uintptr_t size, char *class_name);
+ probe gc__major__obj__alloc__pinned (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);