aboutsummaryrefslogtreecommitdiff
path: root/include/jemalloc/internal/ctl.h
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2012-04-23 19:31:45 -0700
committerJason Evans <je@fb.com>2012-04-23 19:31:45 -0700
commit65f343a632aa1f6bd9b8a65761706391469d2620 (patch)
treeae8caa506f89729f969de534ba48452c0a761f1b /include/jemalloc/internal/ctl.h
parent598779aa554dd4356a8c4464b67b99b29e9a8489 (diff)
downloadjemalloc-65f343a632aa1f6bd9b8a65761706391469d2620.tar.gz
Fix ctl regression.
Fix ctl to correctly compute the number of children at each level of the ctl tree.
Diffstat (limited to 'include/jemalloc/internal/ctl.h')
-rw-r--r--include/jemalloc/internal/ctl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/jemalloc/internal/ctl.h b/include/jemalloc/internal/ctl.h
index c06b9af..adf3827 100644
--- a/include/jemalloc/internal/ctl.h
+++ b/include/jemalloc/internal/ctl.h
@@ -17,17 +17,17 @@ struct ctl_node_s {
struct ctl_named_node_s {
struct ctl_node_s node;
- const char *name;
+ const char *name;
/* If (nchildren == 0), this is a terminal node. */
- unsigned nchildren;
- const ctl_node_t *children;
- int (*ctl)(const size_t *, size_t, void *, size_t *, void *,
- size_t);
+ unsigned nchildren;
+ const ctl_node_t *children;
+ int (*ctl)(const size_t *, size_t, void *, size_t *,
+ void *, size_t);
};
struct ctl_indexed_node_s {
struct ctl_node_s node;
- const ctl_named_node_t *(*index)(const size_t *, size_t, size_t);
+ const ctl_named_node_t *(*index)(const size_t *, size_t, size_t);
};
struct ctl_arena_stats_s {