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-28 02:19:55 +0400
committerMark Probst <mark.probst@gmail.com>2013-01-28 02:19:55 +0400
commitc67fa5755731a0332e638e678d36acc7003a42d7 (patch)
tree8b4bf9b5703287b7f71b306724145aa1f5846f6d /data
parent0da32f0bcbf85934b628477014ab3af01b7918f3 (diff)
[sgen] Fix internal allocator DTrace probes commit.
Diffstat (limited to 'data')
-rw-r--r--data/mono.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/mono.d b/data/mono.d
index 0933e3b7645..dae3c397d0e 100644
--- a/data/mono.d
+++ b/data/mono.d
@@ -75,7 +75,7 @@ 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__alloc (uintptr_t addr, uintptr_t size, int type);
probe gc__internal__dealloc (uintptr_t add, uintptr_t size, int type);
};