| 67 | } |
| 68 | |
| 69 | JEMALLOC_ALWAYS_INLINE bool |
| 70 | tsd_boot0(void) { |
| 71 | tsd_tsd = TlsAlloc(); |
| 72 | if (tsd_tsd == TLS_OUT_OF_INDEXES) { |
| 73 | return true; |
| 74 | } |
| 75 | malloc_tsd_cleanup_register(&tsd_cleanup_wrapper); |
| 76 | tsd_wrapper_set(&tsd_boot_wrapper); |
| 77 | tsd_booted = true; |
| 78 | return false; |
| 79 | } |
| 80 | |
| 81 | JEMALLOC_ALWAYS_INLINE void |
| 82 | tsd_boot1(void) { |
no test coverage detected