X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f5e8daaa6e9f74521068aa75837200bcd182ea6..64561039d3dec9e50b4eaf1b78b3edef71898383:/src/xbt/fifo.c diff --git a/src/xbt/fifo.c b/src/xbt/fifo.c index c3d4ffb905..51eb9b7184 100644 --- a/src/xbt/fifo.c +++ b/src/xbt/fifo.c @@ -36,13 +36,24 @@ xbt_fifo_t xbt_fifo_new(void) * Free the fifo structure. None of the objects that was in the fifo is however modified. */ void xbt_fifo_free(xbt_fifo_t l) +{ + xbt_fifo_reset(l); + xbt_free(l); +} + +/** + * \brief Makes a fifo empty. + * \param l a fifo + * + * None of the objects that was in the fifo is however modified. + */ +void xbt_fifo_reset(xbt_fifo_t l) { xbt_fifo_item_t b, tmp; for (b = xbt_fifo_get_first_item(l); b; tmp = b, b = b->next, xbt_fifo_free_item(tmp)); - xbt_free(l); - return; + l->head = l->tail = NULL; } /** Push @@ -516,7 +527,7 @@ void xbt_fifo_preinit(void) xbt_mallocator_free(item_mallocator); } - item_mallocator = xbt_mallocator_new(256, + item_mallocator = xbt_mallocator_new(65536, fifo_item_mallocator_new_f, fifo_item_mallocator_free_f, fifo_item_mallocator_reset_f);