Initialize bins for a new mstate that is otherwise zeroed out */
| 3990 | |
| 3991 | /* Initialize bins for a new mstate that is otherwise zeroed out */ |
| 3992 | static void init_bins(mstate m) { |
| 3993 | /* Establish circular links for smallbins */ |
| 3994 | bindex_t i; |
| 3995 | for (i = 0; i < NSMALLBINS; ++i) { |
| 3996 | sbinptr bin = smallbin_at(m,i); |
| 3997 | bin->fd = bin->bk = bin; |
| 3998 | } |
| 3999 | } |
| 4000 | |
| 4001 | #if PROCEED_ON_ERROR |
| 4002 |
no outgoing calls
no test coverage detected