aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Goldblatt <davidgoldblatt@fb.com>2017-04-11 13:31:16 -0700
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-04-18 18:35:03 -0700
commitf692e6c214ec3fb5cb64e4131470793c6494afbd (patch)
tree2d574e35c6e7c3c87409566b04d812e979ff4b48 /src
parent54373be0840881cb1123a190013dd11c34ab62f1 (diff)
downloadplatform_external_jemalloc_new-f692e6c214ec3fb5cb64e4131470793c6494afbd.tar.gz
platform_external_jemalloc_new-f692e6c214ec3fb5cb64e4131470793c6494afbd.tar.bz2
platform_external_jemalloc_new-f692e6c214ec3fb5cb64e4131470793c6494afbd.zip
Header refactoring: move util.h out of the catchall
Diffstat (limited to 'src')
-rw-r--r--src/arena.c2
-rw-r--r--src/ckh.c1
-rw-r--r--src/ctl.c2
-rw-r--r--src/jemalloc.c1
-rw-r--r--src/large.c2
-rw-r--r--src/malloc_io.c2
6 files changed, 10 insertions, 0 deletions
diff --git a/src/arena.c b/src/arena.c
index 74511405..27a0f75c 100644
--- a/src/arena.c
+++ b/src/arena.c
@@ -2,6 +2,8 @@
#include "jemalloc/internal/jemalloc_preamble.h"
#include "jemalloc/internal/jemalloc_internal_includes.h"
+#include "jemalloc/internal/util.h"
+
/******************************************************************************/
/* Data. */
diff --git a/src/ckh.c b/src/ckh.c
index a9d181bd..ce977e14 100644
--- a/src/ckh.c
+++ b/src/ckh.c
@@ -39,6 +39,7 @@
#include "jemalloc/internal/jemalloc_internal_includes.h"
#include "jemalloc/internal/malloc_io.h"
+#include "jemalloc/internal/util.h"
/******************************************************************************/
/* Function prototypes for non-inline static functions. */
diff --git a/src/ctl.c b/src/ctl.c
index 7a1b03f1..29689c8e 100644
--- a/src/ctl.c
+++ b/src/ctl.c
@@ -2,6 +2,8 @@
#include "jemalloc/internal/jemalloc_preamble.h"
#include "jemalloc/internal/jemalloc_internal_includes.h"
+#include "jemalloc/internal/util.h"
+
/******************************************************************************/
/* Data. */
diff --git a/src/jemalloc.c b/src/jemalloc.c
index 4b4e9430..7e3ec6ea 100644
--- a/src/jemalloc.c
+++ b/src/jemalloc.c
@@ -4,6 +4,7 @@
#include "jemalloc/internal/atomic.h"
#include "jemalloc/internal/malloc_io.h"
+#include "jemalloc/internal/util.h"
/******************************************************************************/
/* Data. */
diff --git a/src/large.c b/src/large.c
index 3b53eb33..aa3ea1ff 100644
--- a/src/large.c
+++ b/src/large.c
@@ -2,6 +2,8 @@
#include "jemalloc/internal/jemalloc_preamble.h"
#include "jemalloc/internal/jemalloc_internal_includes.h"
+#include "jemalloc/internal/util.h"
+
/******************************************************************************/
void *
diff --git a/src/malloc_io.c b/src/malloc_io.c
index 11dc68db..6b99afcd 100644
--- a/src/malloc_io.c
+++ b/src/malloc_io.c
@@ -1,7 +1,9 @@
#define JEMALLOC_MALLOC_IO_C_
#include "jemalloc/internal/jemalloc_preamble.h"
#include "jemalloc/internal/jemalloc_internal_includes.h"
+
#include "jemalloc/internal/malloc_io.h"
+#include "jemalloc/internal/util.h"
#ifdef assert
# undef assert