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>2013-01-26 10:51:23 +0400
committerMark Probst <mark.probst@gmail.com>2013-01-26 15:53:26 +0400
commit85b33433e4904992decd763cb597813ac642435f (patch)
tree810c924abb88f605ae5c611a7d87ef0ea8045f96 /data
parent10fa0cd33877de58176384cc3431d41af2c9a714 (diff)
[sgen] DTrace probes for internal allocations.
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 e74ff82054f..0933e3b7645 100644
--- a/data/mono.d
+++ b/data/mono.d
@@ -74,6 +74,9 @@ provider mono {
probe gc__global__remset__add (uintptr_t ref_addr, uintptr_t obj_addr, uintptr_t size, char *ns_name, char *class_name);
probe gc__obj__cemented (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name);
+
+ probe gc__internal__alloc (uintptr_t addr, int type, uintptr_t size);
+ probe gc__internal__dealloc (uintptr_t add, uintptr_t size, int type);
};
#pragma D attributes Evolving/Evolving/Common provider mono provider