| 51 | } |
| 52 | |
| 53 | JEMALLOC_ALWAYS_INLINE void |
| 54 | tsd_wrapper_set(tsd_wrapper_t *wrapper) { |
| 55 | if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) { |
| 56 | malloc_write("<jemalloc>: Error setting TSD\n"); |
| 57 | abort(); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | JEMALLOC_ALWAYS_INLINE tsd_wrapper_t * |
| 62 | tsd_wrapper_get(bool init) { |
no test coverage detected