Fix tcaches mutex pre- / post-fork handling.
This commit is contained in:
parent
07ce2434bf
commit
87e2400cbb
12
src/tcache.c
12
src/tcache.c
@ -778,21 +778,15 @@ tcache_boot(tsdn_t *tsdn) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
tcache_prefork(tsdn_t *tsdn) {
|
tcache_prefork(tsdn_t *tsdn) {
|
||||||
if (!config_prof && opt_tcache) {
|
malloc_mutex_prefork(tsdn, &tcaches_mtx);
|
||||||
malloc_mutex_prefork(tsdn, &tcaches_mtx);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
tcache_postfork_parent(tsdn_t *tsdn) {
|
tcache_postfork_parent(tsdn_t *tsdn) {
|
||||||
if (!config_prof && opt_tcache) {
|
malloc_mutex_postfork_parent(tsdn, &tcaches_mtx);
|
||||||
malloc_mutex_postfork_parent(tsdn, &tcaches_mtx);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
tcache_postfork_child(tsdn_t *tsdn) {
|
tcache_postfork_child(tsdn_t *tsdn) {
|
||||||
if (!config_prof && opt_tcache) {
|
malloc_mutex_postfork_child(tsdn, &tcaches_mtx);
|
||||||
malloc_mutex_postfork_child(tsdn, &tcaches_mtx);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user