| 259 | } |
| 260 | |
| 261 | void |
| 262 | malloc_tsd_boot1(void) { |
| 263 | tsd_boot1(); |
| 264 | tsd_t *tsd = tsd_fetch(); |
| 265 | /* malloc_slow has been set properly. Update tsd_slow. */ |
| 266 | tsd_slow_update(tsd); |
| 267 | *tsd_arenas_tdata_bypassp_get(tsd) = false; |
| 268 | } |
| 269 | |
| 270 | #ifdef _WIN32 |
| 271 | static BOOL WINAPI |
no test coverage detected