aboutsummaryrefslogtreecommitdiff
path: root/include/jemalloc/internal/extent.h
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2015-02-15 16:43:52 -0800
committerJason Evans <jasone@canonware.com>2015-02-15 16:43:52 -0800
commit2195ba4e1f8f262b7e6586106d90f4dc0aea7630 (patch)
tree942f80a6a715c3a80f1143f2ff97c775992a2da3 /include/jemalloc/internal/extent.h
parentb01186cebd9828e91a488d86980544bacb01e1a6 (diff)
downloadjemalloc-2195ba4e1f8f262b7e6586106d90f4dc0aea7630.tar.gz
Normalize *_link and link_* fields to all be *_link.
Diffstat (limited to 'include/jemalloc/internal/extent.h')
-rw-r--r--include/jemalloc/internal/extent.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/jemalloc/internal/extent.h b/include/jemalloc/internal/extent.h
index fbcdcf9..885f475 100644
--- a/include/jemalloc/internal/extent.h
+++ b/include/jemalloc/internal/extent.h
@@ -34,14 +34,14 @@ struct extent_node_s {
union {
/* Linkage for the size/address-ordered tree. */
- rb_node(extent_node_t) link_szad;
+ rb_node(extent_node_t) szad_link;
/* Linkage for huge allocations and cached chunks nodes. */
- ql_elm(extent_node_t) link_ql;
+ ql_elm(extent_node_t) ql_link;
};
/* Linkage for the address-ordered tree. */
- rb_node(extent_node_t) link_ad;
+ rb_node(extent_node_t) ad_link;
};
typedef rb_tree(extent_node_t) extent_tree_t;