X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9200323dff19fcdce0c80e27f8c05cdb1ac6dc70..df3bdefc3df0a0810cf48411dd588ed63c65a302:/src/xbt/fifo.c diff --git a/src/xbt/fifo.c b/src/xbt/fifo.c index 8cd20e0a20..fc747c3e70 100644 --- a/src/xbt/fifo.c +++ b/src/xbt/fifo.c @@ -204,7 +204,6 @@ void xbt_fifo_unshift_item(xbt_fifo_t l, xbt_fifo_item_t new) new->next = l->head; new->next->prev = new; l->head = new; - return; } /** Shift bucket @@ -461,7 +460,6 @@ inline void *xbt_fifo_get_item_content(xbt_fifo_item_t i) inline void xbt_fifo_free_item(xbt_fifo_item_t b) { xbt_mallocator_release(item_mallocator, b); - return; } /** Destructor @@ -471,7 +469,6 @@ inline void xbt_fifo_freeitem(xbt_fifo_item_t b) { XBT_CWARN(xbt_fifo, "This function is deprecated. Use xbt_fifo_free_item."); xbt_fifo_free_item(b); - return; } /** @@ -559,13 +556,13 @@ xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i) * These are internal XBT functions called by xbt_preinit/postexit(). * It can be used several times to recreate the mallocator, for example when you switch to MC mode */ -void xbt_fifo_preinit(void) +void xbt_fifo_preinit() { item_mallocator = xbt_mallocator_new(65536, fifo_item_mallocator_new_f, fifo_item_mallocator_free_f, fifo_item_mallocator_reset_f); } -void xbt_fifo_postexit(void) +void xbt_fifo_postexit() { if (item_mallocator != NULL) { xbt_mallocator_free(item_mallocator);