summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Goldblatt <davidgoldblatt@fb.com>2017-04-19 21:56:42 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-04-24 17:33:21 (GMT)
commit68da2361d2cbb4cc34a784093bd2bee94bede543 (patch)
tree731d2a46d6687a2927d43bb1668b49c550b76516 /src
parentbf2dc7e67840807fb90451ab34e7150401f7f7c4 (diff)
downloadjemalloc-68da2361d2cbb4cc34a784093bd2bee94bede543.zip
jemalloc-68da2361d2cbb4cc34a784093bd2bee94bede543.tar.gz
jemalloc-68da2361d2cbb4cc34a784093bd2bee94bede543.tar.bz2
Header refactoring: ckh module - remove from the catchall and unify.
Diffstat (limited to 'src')
-rw-r--r--src/ckh.c3
-rw-r--r--src/prof.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/ckh.c b/src/ckh.c
index db52a84..8f0bac0 100644
--- a/src/ckh.c
+++ b/src/ckh.c
@@ -36,6 +36,9 @@
******************************************************************************/
#define JEMALLOC_CKH_C_
#include "jemalloc/internal/jemalloc_preamble.h"
+
+#include "jemalloc/internal/ckh.h"
+
#include "jemalloc/internal/jemalloc_internal_includes.h"
#include "jemalloc/internal/assert.h"
diff --git a/src/prof.c b/src/prof.c
index 99a4c8f..a8f6aed 100644
--- a/src/prof.c
+++ b/src/prof.c
@@ -3,6 +3,7 @@
#include "jemalloc/internal/jemalloc_internal_includes.h"
#include "jemalloc/internal/assert.h"
+#include "jemalloc/internal/ckh.h"
#include "jemalloc/internal/malloc_io.h"
/******************************************************************************/