summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Goldblatt <davidgoldblatt@fb.com>2017-05-23 21:26:31 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-05-31 20:08:45 (GMT)
commit44f9bd147a3df96e42adbe7ad4f0195763105bbe (patch)
treeff684fa9454c949b54842cc258d5a491827fa000 /src
parentb4b4a98bc8463cc9e4ef0a78244d5047d497eed7 (diff)
downloadjemalloc-44f9bd147a3df96e42adbe7ad4f0195763105bbe.zip
jemalloc-44f9bd147a3df96e42adbe7ad4f0195763105bbe.tar.gz
jemalloc-44f9bd147a3df96e42adbe7ad4f0195763105bbe.tar.bz2
Header refactoring: unify and de-catchall rtree module.
Diffstat (limited to 'src')
-rw-r--r--src/arena.c1
-rw-r--r--src/extent.c1
-rw-r--r--src/jemalloc.c1
-rw-r--r--src/large.c1
-rw-r--r--src/tsd.c1
5 files changed, 5 insertions, 0 deletions
diff --git a/src/arena.c b/src/arena.c
index 9b3ea23..3d0725f 100644
--- a/src/arena.c
+++ b/src/arena.c
@@ -4,6 +4,7 @@
#include "jemalloc/internal/assert.h"
#include "jemalloc/internal/mutex.h"
+#include "jemalloc/internal/rtree.h"
#include "jemalloc/internal/size_classes.h"
#include "jemalloc/internal/util.h"
diff --git a/src/extent.c b/src/extent.c
index 44e9878..2264a0c 100644
--- a/src/extent.c
+++ b/src/extent.c
@@ -4,6 +4,7 @@
#include "jemalloc/internal/assert.h"
#include "jemalloc/internal/ph.h"
+#include "jemalloc/internal/rtree.h"
#include "jemalloc/internal/mutex.h"
/******************************************************************************/
diff --git a/src/jemalloc.c b/src/jemalloc.c
index ed22a25..00b645f 100644
--- a/src/jemalloc.c
+++ b/src/jemalloc.c
@@ -8,6 +8,7 @@
#include "jemalloc/internal/jemalloc_internal_types.h"
#include "jemalloc/internal/malloc_io.h"
#include "jemalloc/internal/mutex.h"
+#include "jemalloc/internal/rtree.h"
#include "jemalloc/internal/size_classes.h"
#include "jemalloc/internal/spin.h"
#include "jemalloc/internal/ticker.h"
diff --git a/src/large.c b/src/large.c
index 55ee352..27c9bc6 100644
--- a/src/large.c
+++ b/src/large.c
@@ -4,6 +4,7 @@
#include "jemalloc/internal/assert.h"
#include "jemalloc/internal/mutex.h"
+#include "jemalloc/internal/rtree.h"
#include "jemalloc/internal/util.h"
/******************************************************************************/
diff --git a/src/tsd.c b/src/tsd.c
index 525432b..29a5677 100644
--- a/src/tsd.c
+++ b/src/tsd.c
@@ -4,6 +4,7 @@
#include "jemalloc/internal/assert.h"
#include "jemalloc/internal/mutex.h"
+#include "jemalloc/internal/rtree.h"
/******************************************************************************/
/* Data. */