| 524 | } |
| 525 | |
| 526 | void |
| 527 | tsd_postfork_child(tsd_t *tsd) { |
| 528 | malloc_mutex_postfork_child(tsd_tsdn(tsd), &tsd_nominal_tsds_lock); |
| 529 | ql_new(&tsd_nominal_tsds); |
| 530 | |
| 531 | if (tsd_state_get(tsd) <= tsd_state_nominal_max) { |
| 532 | tsd_add_nominal(tsd); |
| 533 | } |
| 534 | } |
no test coverage detected