| 256 | } |
| 257 | |
| 258 | tsd_t * |
| 259 | malloc_tsd_boot0(void) { |
| 260 | tsd_t *tsd; |
| 261 | |
| 262 | ncleanups = 0; |
| 263 | if (tsd_boot0()) { |
| 264 | return NULL; |
| 265 | } |
| 266 | tsd = tsd_fetch(); |
| 267 | *tsd_arenas_tdata_bypassp_get(tsd) = true; |
| 268 | return tsd; |
| 269 | } |
| 270 | |
| 271 | void |
| 272 | malloc_tsd_boot1(void) { |
no test coverage detected