X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6de03ecc4e630732984a0673512a5d15fd75e270..bda909b7e0c9350047dd46f40b37fe484b28b7cc:/src/xbt/fifo_private.h?ds=sidebyside diff --git a/src/xbt/fifo_private.h b/src/xbt/fifo_private.h index 47bdc4dc99..1edc64a946 100644 --- a/src/xbt/fifo_private.h +++ b/src/xbt/fifo_private.h @@ -29,21 +29,4 @@ typedef struct xbt_fifo { #define xbt_fifo_getItemcontent(i) ((i)?(i)->content:NULL) #define xbt_fifo_Itemcontent(i) ((i)->content) #define xbt_fifo_setItemcontent(i,v) (i->content=v) - - -/* static __inline__ xbt_fifo_item_t xbt_fifo_getFirstitem(xbt_fifo_t l) */ -/* { */ -/* return l->head; */ -/* } */ -/* static __inline__ xbt_fifo_item_t xbt_fifo_getNextitem(xbt_fifo_item_t i) */ -/* { */ -/* if(i) return i->next; */ -/* return NULL; */ -/* } */ -/* static __inline__ xbt_fifo_item_t xbt_fifo_getPrevitem(xbt_fifo_item_t i) */ -/* { */ -/* if(i) return i->prev; */ -/* return NULL; */ -/* } */ - #endif /* _XBT_FIFO_PRIVATE_H */