diff options
author | Jason Evans <jasone@canonware.com> | 2016-11-17 21:36:17 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-12-27 01:59:34 (GMT) |
commit | c1baa0a9b7b05ebf98221dc7deb12c28e170a399 (patch) | |
tree | c750107c4d3da8bc4222961866267e2939fb6241 /Makefile.in | |
parent | eab3b180e59d6b23fee5fd2165f96402e7341cba (diff) | |
download | jemalloc-c1baa0a9b7b05ebf98221dc7deb12c28e170a399.zip jemalloc-c1baa0a9b7b05ebf98221dc7deb12c28e170a399.tar.gz jemalloc-c1baa0a9b7b05ebf98221dc7deb12c28e170a399.tar.bz2 |
Add huge page configuration and pages_[no}huge().
Add the --with-lg-hugepage configure option, but automatically configure
LG_HUGEPAGE even if it isn't specified.
Add the pages_[no]huge() functions, which toggle huge page state via
madvise(..., MADV_[NO]HUGEPAGE) calls.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 22b1134..052688b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -170,6 +170,7 @@ TESTS_UNIT := \ $(srcroot)test/unit/mq.c \ $(srcroot)test/unit/mtx.c \ $(srcroot)test/unit/pack.c \ + $(srcroot)test/unit/pages.c \ $(srcroot)test/unit/ph.c \ $(srcroot)test/unit/prng.c \ $(srcroot)test/unit/prof_accum.c \ |