| 2415 | } |
| 2416 | |
| 2417 | void |
| 2418 | prof_prefork1(tsdn_t *tsdn) { |
| 2419 | if (config_prof && opt_prof) { |
| 2420 | malloc_mutex_prefork(tsdn, &prof_active_mtx); |
| 2421 | malloc_mutex_prefork(tsdn, &prof_dump_seq_mtx); |
| 2422 | malloc_mutex_prefork(tsdn, &prof_gdump_mtx); |
| 2423 | malloc_mutex_prefork(tsdn, &next_thr_uid_mtx); |
| 2424 | malloc_mutex_prefork(tsdn, &prof_thread_active_init_mtx); |
| 2425 | } |
| 2426 | } |
| 2427 | |
| 2428 | void |
| 2429 | prof_postfork_parent(tsdn_t *tsdn) { |
no test coverage detected