Initialization/cleanup. */
| 11 | |
| 12 | /* Initialization/cleanup. */ |
| 13 | JEMALLOC_ALWAYS_INLINE bool |
| 14 | tsd_boot0(void) { |
| 15 | if (pthread_key_create(&tsd_tsd, &tsd_cleanup) != 0) { |
| 16 | return true; |
| 17 | } |
| 18 | tsd_booted = true; |
| 19 | return false; |
| 20 | } |
| 21 | |
| 22 | JEMALLOC_ALWAYS_INLINE void |
| 23 | tsd_boot1(void) { |
no outgoing calls
no test coverage detected