Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
It was hard to use FIFOs when xbt_fifo_push was not mentioned in the doc
[simgrid.git] / src / xbt / fifo.c
index 252d2d1..e7cf7ab 100644 (file)
@@ -9,7 +9,7 @@
 #include "xbt/log.h"
 #include "fifo_private.h"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(fifo,xbt,"FIFO");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_fifo,xbt,"FIFO");
 
 /** Constructor
  * \return a new fifo
@@ -36,7 +36,7 @@ void xbt_fifo_free(xbt_fifo_t l)
   return;
 }
 
-/* Push
+/** Push
  * \param l list
  * \param t element
  * \return the bucket that was just added