Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent include and src using this command:
[simgrid.git] / src / xbt / fifo.c
index a11b416..c3d4ffb 100644 (file)
@@ -509,7 +509,8 @@ 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(void)
+{
   if (item_mallocator != NULL) {
     /* Already created. I guess we want to switch to MC mode, so kill the previously created mallocator */
     xbt_mallocator_free(item_mallocator);
@@ -521,7 +522,8 @@ void xbt_fifo_preinit(void) {
                                        fifo_item_mallocator_reset_f);
 }
 
-void xbt_fifo_postexit(void) {
+void xbt_fifo_postexit(void)
+{
   if (item_mallocator != NULL) {
     xbt_mallocator_free(item_mallocator);
     item_mallocator = NULL;