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-29 16:48:01 +0400
committerMark Probst <mark.probst@gmail.com>2012-09-29 16:48:01 +0400
commit77ac49c17fbed60cc742b2afc050d8857919817a (patch)
tree09ce30782d969c928c07a461de6d55e5c336ba34 /data
parentc0b840c838892f55fff07fc221678a76bbf13f0b (diff)
[dtrace] Turns out "sweeped" is not a word.
Diffstat (limited to 'data')
-rw-r--r--data/mono.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/mono.d b/data/mono.d
index 566508e2688..e2f4153beff 100644
--- a/data/mono.d
+++ b/data/mono.d
@@ -36,8 +36,8 @@ provider mono {
/* Can be nursery->nursery, nursery->major or major->major */
probe gc__obj__moved (uintptr_t dest, uintptr_t src, int dest_gen, int src_gen, uintptr_t size, char *ns_name, char *class_name);
- probe gc__nursery__sweeped (uintptr_t addr, uintptr_t len);
- probe gc__major__sweeped (uintptr_t addr, uintptr_t len);
+ probe gc__nursery__swept (uintptr_t addr, uintptr_t len);
+ probe gc__major__swept (uintptr_t addr, uintptr_t len);
probe gc__obj__pinned (uintptr_t addr, uintptr_t size, char *ns_name, char *class_name, int generation);
};