| 90 | } |
| 91 | |
| 92 | JEMALLOC_ALWAYS_INLINE bool |
| 93 | tsd_boot0(void) { |
| 94 | if (pthread_key_create(&tsd_tsd, tsd_cleanup_wrapper) != 0) { |
| 95 | return true; |
| 96 | } |
| 97 | tsd_wrapper_set(&tsd_boot_wrapper); |
| 98 | tsd_booted = true; |
| 99 | return false; |
| 100 | } |
| 101 | |
| 102 | JEMALLOC_ALWAYS_INLINE void |
| 103 | tsd_boot1(void) { |
no test coverage detected