Initialize bins for a new mstate that is otherwise zeroed out */
| 3904 | |
| 3905 | /* Initialize bins for a new mstate that is otherwise zeroed out */ |
| 3906 | static void init_bins(mstate m) { |
| 3907 | /* Establish circular links for smallbins */ |
| 3908 | bindex_t i; |
| 3909 | for (i = 0; i < NSMALLBINS; ++i) { |
| 3910 | sbinptr bin = smallbin_at(m,i); |
| 3911 | bin->fd = bin->bk = bin; |
| 3912 | } |
| 3913 | } |
| 3914 | |
| 3915 | #if PROCEED_ON_ERROR |
| 3916 |
no outgoing calls
no test coverage detected