summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQi Wang <interwq@gwu.edu>2017-06-01 19:52:09 (GMT)
committerQi Wang <interwq@gmail.com>2017-06-02 00:34:49 (GMT)
commit340071f0cf6902a79102328960f5cf1ced87f3c2 (patch)
treef0f48146273b5b0f3c7c9d671e03cbbe74a9f05c
parentc84ec3e9da66162943ee33afe73c7f898fa134e2 (diff)
downloadjemalloc-340071f0cf6902a79102328960f5cf1ced87f3c2.zip
jemalloc-340071f0cf6902a79102328960f5cf1ced87f3c2.tar.gz
jemalloc-340071f0cf6902a79102328960f5cf1ced87f3c2.tar.bz2
Set isthreaded when enabling background_thread.
-rw-r--r--include/jemalloc/internal/background_thread_externs.h1
-rw-r--r--src/background_thread.c62
-rw-r--r--src/ctl.c1
3 files changed, 41 insertions, 23 deletions
diff --git a/include/jemalloc/internal/background_thread_externs.h b/include/jemalloc/internal/background_thread_externs.h
index a2d95a7..aef1c90 100644
--- a/include/jemalloc/internal/background_thread_externs.h
+++ b/include/jemalloc/internal/background_thread_externs.h
@@ -20,6 +20,7 @@ void background_thread_postfork_parent(tsdn_t *tsdn);
void background_thread_postfork_child(tsdn_t *tsdn);
bool background_thread_stats_read(tsdn_t *tsdn,
background_thread_stats_t *stats);
+void background_thread_ctl_init(tsdn_t *tsdn);
#ifdef JEMALLOC_PTHREAD_CREATE_WRAPPER
extern int pthread_create_wrapper(pthread_t *__restrict, const pthread_attr_t *,
diff --git a/src/background_thread.c b/src/background_thread.c
index a89cad2..64eba1a 100644
--- a/src/background_thread.c
+++ b/src/background_thread.c
@@ -22,6 +22,29 @@ background_thread_info_t *background_thread_info;
/******************************************************************************/
+#ifdef JEMALLOC_PTHREAD_CREATE_WRAPPER
+#include <dlfcn.h>
+
+static int (*pthread_create_fptr)(pthread_t *__restrict, const pthread_attr_t *,
+ void *(*)(void *), void *__restrict);
+static pthread_once_t once_control = PTHREAD_ONCE_INIT;
+
+static void
+pthread_create_wrapper_once(void) {
+#ifdef JEMALLOC_LAZY_LOCK
+ isthreaded = true;
+#endif
+}
+
+int
+pthread_create_wrapper(pthread_t *__restrict thread, const pthread_attr_t *attr,
+ void *(*start_routine)(void *), void *__restrict arg) {
+ pthread_once(&once_control, pthread_create_wrapper_once);
+
+ return pthread_create_fptr(thread, attr, start_routine, arg);
+}
+#endif /* JEMALLOC_PTHREAD_CREATE_WRAPPER */
+
#ifndef JEMALLOC_BACKGROUND_THREAD
#define NOT_REACHED { not_reached(); }
bool background_thread_create(tsd_t *tsd, unsigned arena_ind) NOT_REACHED
@@ -37,6 +60,7 @@ void background_thread_postfork_parent(tsdn_t *tsdn) NOT_REACHED
void background_thread_postfork_child(tsdn_t *tsdn) NOT_REACHED
bool background_thread_stats_read(tsdn_t *tsdn,
background_thread_stats_t *stats) NOT_REACHED
+void background_thread_ctl_init(tsdn_t *tsdn) NOT_REACHED
#undef NOT_REACHED
#else
@@ -600,31 +624,19 @@ background_thread_stats_read(tsdn_t *tsdn, background_thread_stats_t *stats) {
#undef BILLION
#undef BACKGROUND_THREAD_MIN_INTERVAL_NS
-#endif /* defined(JEMALLOC_BACKGROUND_THREAD) */
-
-#ifdef JEMALLOC_PTHREAD_CREATE_WRAPPER
-#include <dlfcn.h>
-
-static int (*pthread_create_fptr)(pthread_t *__restrict, const pthread_attr_t *,
- void *(*)(void *), void *__restrict);
-
-static void
-pthread_create_wrapper_once(void) {
-#ifdef JEMALLOC_LAZY_LOCK
- isthreaded = true;
-#endif
-}
-
-int
-pthread_create_wrapper(pthread_t *__restrict thread, const pthread_attr_t *attr,
- void *(*start_routine)(void *), void *__restrict arg) {
- static pthread_once_t once_control = PTHREAD_ONCE_INIT;
-
+/*
+ * When lazy lock is enabled, we need to make sure setting isthreaded before
+ * taking any background_thread locks. This is called early in ctl (instead of
+ * wait for the pthread_create calls to trigger) because the mutex is required
+ * before creating background threads.
+ */
+void
+background_thread_ctl_init(tsdn_t *tsdn) {
+ malloc_mutex_assert_not_owner(tsdn, &background_thread_lock);
pthread_once(&once_control, pthread_create_wrapper_once);
-
- return pthread_create_fptr(thread, attr, start_routine, arg);
}
-#endif
+
+#endif /* defined(JEMALLOC_BACKGROUND_THREAD) */
bool
background_thread_boot0(void) {
@@ -658,6 +670,10 @@ background_thread_boot1(tsdn_t *tsdn) {
malloc_mutex_rank_exclusive)) {
return true;
}
+ if (opt_background_thread) {
+ background_thread_ctl_init(tsdn);
+ }
+
background_thread_info = (background_thread_info_t *)base_alloc(tsdn,
b0get(), ncpus * sizeof(background_thread_info_t), CACHELINE);
if (background_thread_info == NULL) {
diff --git a/src/ctl.c b/src/ctl.c
index 7005988..c3514bd 100644
--- a/src/ctl.c
+++ b/src/ctl.c
@@ -1499,6 +1499,7 @@ background_thread_ctl(tsd_t *tsd, const size_t *mib, size_t miblen,
if (!have_background_thread) {
return ENOENT;
}
+ background_thread_ctl_init(tsd_tsdn(tsd));
malloc_mutex_lock(tsd_tsdn(tsd), &background_thread_lock);
if (newp == NULL) {