| 2875 | } |
| 2876 | |
| 2877 | bool |
| 2878 | prof_thread_active_init_get(tsdn_t *tsdn) { |
| 2879 | bool active_init; |
| 2880 | |
| 2881 | malloc_mutex_lock(tsdn, &prof_thread_active_init_mtx); |
| 2882 | active_init = prof_thread_active_init; |
| 2883 | malloc_mutex_unlock(tsdn, &prof_thread_active_init_mtx); |
| 2884 | return active_init; |
| 2885 | } |
| 2886 | |
| 2887 | bool |
| 2888 | prof_thread_active_init_set(tsdn_t *tsdn, bool active_init) { |
no test coverage detected