| 2885 | } |
| 2886 | |
| 2887 | bool |
| 2888 | prof_thread_active_init_set(tsdn_t *tsdn, bool active_init) { |
| 2889 | bool active_init_old; |
| 2890 | |
| 2891 | malloc_mutex_lock(tsdn, &prof_thread_active_init_mtx); |
| 2892 | active_init_old = prof_thread_active_init; |
| 2893 | prof_thread_active_init = active_init; |
| 2894 | malloc_mutex_unlock(tsdn, &prof_thread_active_init_mtx); |
| 2895 | return active_init_old; |
| 2896 | } |
| 2897 | |
| 2898 | bool |
| 2899 | prof_gdump_get(tsdn_t *tsdn) { |
no test coverage detected