summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2017-04-21 17:07:01 (GMT)
committerJason Evans <jasone@canonware.com>2017-04-21 18:12:29 (GMT)
commitb2a8453a3fa653dc71f82ac9df64b012917f6b8c (patch)
treef8375caa920a1c54d77e99df4eed858f91de5ec2 /src
parentae248a216098add2d91358a49758b181bcbb4d35 (diff)
downloadjemalloc-b2a8453a3fa653dc71f82ac9df64b012917f6b8c.zip
jemalloc-b2a8453a3fa653dc71f82ac9df64b012917f6b8c.tar.gz
jemalloc-b2a8453a3fa653dc71f82ac9df64b012917f6b8c.tar.bz2
Remove --disable-tls.
This option is no longer useful, because TLS is correctly configured automatically on all supported platforms. This partially resolves #580.
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 a184295..e9143dd 100644
--- a/src/ctl.c
+++ b/src/ctl.c
@@ -70,7 +70,6 @@ CTL_PROTO(config_prof)
CTL_PROTO(config_prof_libgcc)
CTL_PROTO(config_prof_libunwind)
CTL_PROTO(config_stats)
-CTL_PROTO(config_tls)
CTL_PROTO(config_utrace)
CTL_PROTO(config_xmalloc)
CTL_PROTO(opt_abort)
@@ -254,7 +253,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("tls"), CTL(config_tls)},
{NAME("utrace"), CTL(config_utrace)},
{NAME("xmalloc"), CTL(config_xmalloc)}
};
@@ -1450,7 +1448,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_tls, 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 4074c94..71c9a94 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -712,7 +712,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(tls, ",")
CONFIG_WRITE_BOOL_JSON(utrace, ",")
CONFIG_WRITE_BOOL_JSON(xmalloc, "")