| 3102 | } |
| 3103 | |
| 3104 | void |
| 3105 | prof_prefork1(tsdn_t *tsdn) { |
| 3106 | if (config_prof && opt_prof) { |
| 3107 | malloc_mutex_prefork(tsdn, &prof_active_mtx); |
| 3108 | malloc_mutex_prefork(tsdn, &prof_dump_seq_mtx); |
| 3109 | malloc_mutex_prefork(tsdn, &prof_gdump_mtx); |
| 3110 | malloc_mutex_prefork(tsdn, &next_thr_uid_mtx); |
| 3111 | malloc_mutex_prefork(tsdn, &prof_thread_active_init_mtx); |
| 3112 | } |
| 3113 | } |
| 3114 | |
| 3115 | void |
| 3116 | prof_postfork_parent(tsdn_t *tsdn) { |
no test coverage detected