Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further remove dead code
[simgrid.git] / src / xbt / fifo_private.h
index 47bdc4d..1edc64a 100644 (file)
@@ -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 */