aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQi Wang <interwq@gwu.edu>2018-03-05 14:45:04 -0800
committerQi Wang <interwq@gmail.com>2018-03-08 13:08:06 -0800
commitefa40532dc0fc000345086757ecaf8875313a012 (patch)
treef9f6faed399c320cf93caf6a108d1786f9614d14 /src
parent6b35366ef55bb5987c7ac91e1c100e9e55ef15cc (diff)
downloadplatform_external_jemalloc_new-efa40532dc0fc000345086757ecaf8875313a012.tar.gz
platform_external_jemalloc_new-efa40532dc0fc000345086757ecaf8875313a012.tar.bz2
platform_external_jemalloc_new-efa40532dc0fc000345086757ecaf8875313a012.zip
Remove config.thp which wasn't in use.
Diffstat (limited to 'src')
-rw-r--r--src/ctl.c3
-rw-r--r--src/stats.c1
2 files changed, 0 insertions, 4 deletions
diff --git a/src/ctl.c b/src/ctl.c
index 3a22423b..17672493 100644
--- a/src/ctl.c
+++ b/src/ctl.c
@@ -75,7 +75,6 @@ CTL_PROTO(config_prof)
CTL_PROTO(config_prof_libgcc)
CTL_PROTO(config_prof_libunwind)
CTL_PROTO(config_stats)
-CTL_PROTO(config_thp)
CTL_PROTO(config_utrace)
CTL_PROTO(config_xmalloc)
CTL_PROTO(opt_abort)
@@ -271,7 +270,6 @@ static const ctl_named_node_t config_node[] = {
{NAME("prof_libgcc"), CTL(config_prof_libgcc)},
{NAME("prof_libunwind"), CTL(config_prof_libunwind)},
{NAME("stats"), CTL(config_stats)},
- {NAME("thp"), CTL(config_thp)},
{NAME("utrace"), CTL(config_utrace)},
{NAME("xmalloc"), CTL(config_xmalloc)}
};
@@ -1575,7 +1573,6 @@ CTL_RO_CONFIG_GEN(config_prof, bool)
CTL_RO_CONFIG_GEN(config_prof_libgcc, bool)
CTL_RO_CONFIG_GEN(config_prof_libunwind, bool)
CTL_RO_CONFIG_GEN(config_stats, bool)
-CTL_RO_CONFIG_GEN(config_thp, bool)
CTL_RO_CONFIG_GEN(config_utrace, bool)
CTL_RO_CONFIG_GEN(config_xmalloc, bool)
diff --git a/src/stats.c b/src/stats.c
index 0a89b4b0..11959cbe 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -732,7 +732,6 @@ stats_general_print(void (*write_cb)(void *, const char *), void *cbopaque,
CONFIG_WRITE_BOOL_JSON(prof_libgcc, ",")
CONFIG_WRITE_BOOL_JSON(prof_libunwind, ",")
CONFIG_WRITE_BOOL_JSON(stats, ",")
- CONFIG_WRITE_BOOL_JSON(thp, ",")
CONFIG_WRITE_BOOL_JSON(utrace, ",")
CONFIG_WRITE_BOOL_JSON(xmalloc, "")