summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Goldblatt <davidgoldblatt@fb.com>2017-05-23 21:42:32 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-05-31 20:08:45 (GMT)
commit98774e64a4696c7bce6d2317aa59fe5b39bba69f (patch)
tree66aaaf73b85c8294526e2904720063a798650ff2 /src
parent93284bb53d9c44a5c36297450a82aed5b8051526 (diff)
downloadjemalloc-98774e64a4696c7bce6d2317aa59fe5b39bba69f.zip
jemalloc-98774e64a4696c7bce6d2317aa59fe5b39bba69f.tar.gz
jemalloc-98774e64a4696c7bce6d2317aa59fe5b39bba69f.tar.bz2
Header refactoring: unify and de-catchall extent_mmap module.
Diffstat (limited to 'src')
-rw-r--r--src/arena.c1
-rw-r--r--src/base.c1
-rw-r--r--src/ctl.c1
-rw-r--r--src/extent.c1
-rw-r--r--src/extent_mmap.c1
-rw-r--r--src/jemalloc.c1
-rw-r--r--src/large.c1
7 files changed, 7 insertions, 0 deletions
diff --git a/src/arena.c b/src/arena.c
index 0135895..bf1d6e6 100644
--- a/src/arena.c
+++ b/src/arena.c
@@ -4,6 +4,7 @@
#include "jemalloc/internal/assert.h"
#include "jemalloc/internal/extent_dss.h"
+#include "jemalloc/internal/extent_mmap.h"
#include "jemalloc/internal/mutex.h"
#include "jemalloc/internal/rtree.h"
#include "jemalloc/internal/size_classes.h"
diff --git a/src/base.c b/src/base.c
index 892c28d..498e5c9 100644
--- a/src/base.c
+++ b/src/base.c
@@ -3,6 +3,7 @@
#include "jemalloc/internal/jemalloc_internal_includes.h"
#include "jemalloc/internal/assert.h"
+#include "jemalloc/internal/extent_mmap.h"
#include "jemalloc/internal/mutex.h"
/******************************************************************************/
diff --git a/src/ctl.c b/src/ctl.c
index e81ca41..33275d7 100644
--- a/src/ctl.c
+++ b/src/ctl.c
@@ -5,6 +5,7 @@
#include "jemalloc/internal/assert.h"
#include "jemalloc/internal/ctl.h"
#include "jemalloc/internal/extent_dss.h"
+#include "jemalloc/internal/extent_mmap.h"
#include "jemalloc/internal/mutex.h"
#include "jemalloc/internal/nstime.h"
#include "jemalloc/internal/size_classes.h"
diff --git a/src/extent.c b/src/extent.c
index 0929aee..6589de5 100644
--- a/src/extent.c
+++ b/src/extent.c
@@ -4,6 +4,7 @@
#include "jemalloc/internal/assert.h"
#include "jemalloc/internal/extent_dss.h"
+#include "jemalloc/internal/extent_mmap.h"
#include "jemalloc/internal/ph.h"
#include "jemalloc/internal/rtree.h"
#include "jemalloc/internal/mutex.h"
diff --git a/src/extent_mmap.c b/src/extent_mmap.c
index 3e4e1ef..8d607dc 100644
--- a/src/extent_mmap.c
+++ b/src/extent_mmap.c
@@ -3,6 +3,7 @@
#include "jemalloc/internal/jemalloc_internal_includes.h"
#include "jemalloc/internal/assert.h"
+#include "jemalloc/internal/extent_mmap.h"
/******************************************************************************/
/* Data. */
diff --git a/src/jemalloc.c b/src/jemalloc.c
index 32f4a4c..1befb64 100644
--- a/src/jemalloc.c
+++ b/src/jemalloc.c
@@ -6,6 +6,7 @@
#include "jemalloc/internal/atomic.h"
#include "jemalloc/internal/ctl.h"
#include "jemalloc/internal/extent_dss.h"
+#include "jemalloc/internal/extent_mmap.h"
#include "jemalloc/internal/jemalloc_internal_types.h"
#include "jemalloc/internal/malloc_io.h"
#include "jemalloc/internal/mutex.h"
diff --git a/src/large.c b/src/large.c
index 27c9bc6..79d2c9d 100644
--- a/src/large.c
+++ b/src/large.c
@@ -3,6 +3,7 @@
#include "jemalloc/internal/jemalloc_internal_includes.h"
#include "jemalloc/internal/assert.h"
+#include "jemalloc/internal/extent_mmap.h"
#include "jemalloc/internal/mutex.h"
#include "jemalloc/internal/rtree.h"
#include "jemalloc/internal/util.h"