| 246 | } |
| 247 | |
| 248 | tsd_t * |
| 249 | malloc_tsd_boot0(void) { |
| 250 | tsd_t *tsd; |
| 251 | |
| 252 | ncleanups = 0; |
| 253 | if (tsd_boot0()) { |
| 254 | return NULL; |
| 255 | } |
| 256 | tsd = tsd_fetch(); |
| 257 | *tsd_arenas_tdata_bypassp_get(tsd) = true; |
| 258 | return tsd; |
| 259 | } |
| 260 | |
| 261 | void |
| 262 | malloc_tsd_boot1(void) { |
no test coverage detected