Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] Don't free power_peak from the caller
[simgrid.git] / examples / msg / token_ring / token_bypass.c
index 99002a2..eb1f655 100644 (file)
@@ -6,8 +6,8 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include "surf/surfxml_parse.h"
 #include "simgrid/msg.h"
-#include "surf/surf_private.h"
 
 int host(int argc, char *argv[]);
 unsigned int task_comp_size = 50000000;
@@ -70,12 +70,14 @@ static int surf_parse_bypass_platform(void)
   bob.power_peak = xbt_dynar_new(sizeof(double), NULL);
   xbt_dynar_push_as(bob.power_peak, double, 98095000.0);
   sg_platf_new_host(&bob);
+  xbt_dynar_free(&bob.power_peak);
 
   s_sg_platf_host_cbarg_t alice = SG_PLATF_HOST_INITIALIZER;
   alice.id = "alice";
   alice.power_peak = xbt_dynar_new(sizeof(double), NULL);
   xbt_dynar_push_as(alice.power_peak, double, 98095000.0);
   sg_platf_new_host(&alice);
+  xbt_dynar_free(&alice.power_peak);
 
   s_sg_platf_link_cbarg_t link = SG_PLATF_LINK_INITIALIZER;
   link.id = "link1";
@@ -92,7 +94,6 @@ static int surf_parse_bypass_platform(void)
 
   sg_platf_new_AS_end();
   sg_platf_end();
-  sg_platf_exit();
   return 0;
 }