summaryrefslogtreecommitdiffstats
path: root/include/jemalloc
diff options
context:
space:
mode:
authorDavid Goldblatt <davidgoldblatt@fb.com>2017-04-11 20:31:16 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-04-19 01:35:03 (GMT)
commitf692e6c214ec3fb5cb64e4131470793c6494afbd (patch)
tree2d574e35c6e7c3c87409566b04d812e979ff4b48 /include/jemalloc
parent54373be0840881cb1123a190013dd11c34ab62f1 (diff)
downloadjemalloc-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.h1
-rw-r--r--include/jemalloc/internal/tcache_inlines.h2
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);