mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-06-17 17:35:39 +03:00
Remove obsolete TSD nominal list
This commit is contained in:
parent
42e671433f
commit
cec4e84c02
3 changed files with 10 additions and 111 deletions
|
|
@ -88,7 +88,6 @@ _malloc_prefork(void)
|
|||
}
|
||||
prof_prefork1(tsd_tsdn(tsd));
|
||||
stats_prefork(tsd_tsdn(tsd));
|
||||
tsd_prefork(tsd);
|
||||
}
|
||||
|
||||
#ifndef JEMALLOC_MUTEX_INIT_CB
|
||||
|
|
@ -111,8 +110,6 @@ _malloc_postfork(void)
|
|||
|
||||
tsd = tsd_fetch();
|
||||
|
||||
tsd_postfork_parent(tsd);
|
||||
|
||||
witness_postfork_parent(tsd_witness_tsdp_get(tsd));
|
||||
/* Release all mutexes, now that fork() has completed. */
|
||||
stats_postfork_parent(tsd_tsdn(tsd));
|
||||
|
|
@ -141,8 +138,6 @@ jemalloc_postfork_child(void) {
|
|||
|
||||
tsd = tsd_fetch();
|
||||
|
||||
tsd_postfork_child(tsd);
|
||||
|
||||
witness_postfork_child(tsd_witness_tsdp_get(tsd));
|
||||
/* Release all mutexes, now that fork() has completed. */
|
||||
stats_postfork_child(tsd_tsdn(tsd));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue