diff options
author | Jason Evans <jasone@canonware.com> | 2014-10-30 23:38:08 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2014-10-30 23:38:08 (GMT) |
commit | af1f5927633ee2cb98c095de0fcc67b8aacdc9c0 (patch) | |
tree | 546951af6c5f91a059a940eaa247aef3d7d4bf0e /src/extent.c | |
parent | 1f725eb7b5ddafa99e0ae0858a18eb25dae18641 (diff) | |
download | jemalloc-af1f5927633ee2cb98c095de0fcc67b8aacdc9c0.zip jemalloc-af1f5927633ee2cb98c095de0fcc67b8aacdc9c0.tar.gz jemalloc-af1f5927633ee2cb98c095de0fcc67b8aacdc9c0.tar.bz2 |
Use JEMALLOC_INLINE_C everywhere it's appropriate.
Diffstat (limited to 'src/extent.c')
-rw-r--r-- | src/extent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extent.c b/src/extent.c index 8c09b48..ca85201 100644 --- a/src/extent.c +++ b/src/extent.c @@ -3,7 +3,7 @@ /******************************************************************************/ -static inline int +JEMALLOC_INLINE_C int extent_szad_comp(extent_node_t *a, extent_node_t *b) { int ret; @@ -25,7 +25,7 @@ extent_szad_comp(extent_node_t *a, extent_node_t *b) rb_gen(, extent_tree_szad_, extent_tree_t, extent_node_t, link_szad, extent_szad_comp) -static inline int +JEMALLOC_INLINE_C int extent_ad_comp(extent_node_t *a, extent_node_t *b) { uintptr_t a_addr = (uintptr_t)a->addr; |