diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-04-11 20:31:16 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-04-19 01:35:03 (GMT) |
commit | f692e6c214ec3fb5cb64e4131470793c6494afbd (patch) | |
tree | 2d574e35c6e7c3c87409566b04d812e979ff4b48 /include/jemalloc | |
parent | 54373be0840881cb1123a190013dd11c34ab62f1 (diff) | |
download | jemalloc-f692e6c214ec3fb5cb64e4131470793c6494afbd.zip jemalloc-f692e6c214ec3fb5cb64e4131470793c6494afbd.tar.gz jemalloc-f692e6c214ec3fb5cb64e4131470793c6494afbd.tar.bz2 |
Header refactoring: move util.h out of the catchall
Diffstat (limited to 'include/jemalloc')
-rw-r--r-- | include/jemalloc/internal/jemalloc_internal_includes.h | 1 | ||||
-rw-r--r-- | include/jemalloc/internal/tcache_inlines.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/jemalloc/internal/jemalloc_internal_includes.h b/include/jemalloc/internal/jemalloc_internal_includes.h index d4d0c20..3a9c6ca 100644 --- a/include/jemalloc/internal/jemalloc_internal_includes.h +++ b/include/jemalloc/internal/jemalloc_internal_includes.h @@ -41,7 +41,6 @@ /******************************************************************************/ #include "jemalloc/internal/assert.h" -#include "jemalloc/internal/util.h" /******************************************************************************/ /* TYPES */ diff --git a/include/jemalloc/internal/tcache_inlines.h b/include/jemalloc/internal/tcache_inlines.h index ea29f35..77e559a 100644 --- a/include/jemalloc/internal/tcache_inlines.h +++ b/include/jemalloc/internal/tcache_inlines.h @@ -1,6 +1,8 @@ #ifndef JEMALLOC_INTERNAL_TCACHE_INLINES_H #define JEMALLOC_INTERNAL_TCACHE_INLINES_H +#include "jemalloc/internal/util.h" + #ifndef JEMALLOC_ENABLE_INLINE void tcache_event(tsd_t *tsd, tcache_t *tcache); void tcache_flush(void); |