Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not free return set here either.
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 14 Jan 2016 19:19:21 +0000 (20:19 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 14 Jan 2016 19:19:32 +0000 (20:19 +0100)
examples/simdag/dot/dot_test.c
examples/simdag/dot/simulate_dot.c

index 07c3f53..f263870 100644 (file)
@@ -19,7 +19,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test,
 
 int main(int argc, char **argv)
 {
 
 int main(int argc, char **argv)
 {
-  xbt_dynar_t dot, changed;
+  xbt_dynar_t dot;
   unsigned int cursor;
   SD_task_t task;
 
   unsigned int cursor;
   SD_task_t task;
 
@@ -87,8 +87,8 @@ int main(int argc, char **argv)
 
   XBT_INFO
       ("------------------- Run the schedule ---------------------------");
 
   XBT_INFO
       ("------------------- Run the schedule ---------------------------");
-  changed = SD_simulate(-1);
-  xbt_dynar_free_container(&changed);
+  SD_simulate(-1);
+
   XBT_INFO
       ("------------------- Produce the trace file---------------------------");
   XBT_INFO("Producing the trace of the run into %s", basename(tracefilename));
   XBT_INFO
       ("------------------- Produce the trace file---------------------------");
   XBT_INFO("Producing the trace of the run into %s", basename(tracefilename));
index 6baa5c5..c68c98f 100644 (file)
@@ -19,7 +19,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test,
 
 int main(int argc, char **argv)
 {
 
 int main(int argc, char **argv)
 {
-  xbt_dynar_t dot, changed;
+  xbt_dynar_t dot;
   unsigned int cursor;
   SD_task_t task;
 
   unsigned int cursor;
   SD_task_t task;
 
@@ -73,8 +73,8 @@ int main(int argc, char **argv)
 
   XBT_INFO
   ("------------------- Run the schedule ---------------------------");
 
   XBT_INFO
   ("------------------- Run the schedule ---------------------------");
-  changed = SD_simulate(-1);
-  xbt_dynar_free_container(&changed);
+  SD_simulate(-1);
+
   XBT_INFO
   ("------------------- Produce the trace file---------------------------");
   XBT_INFO("Producing the trace of the run into %s", basename(tracefilename));
   XBT_INFO
   ("------------------- Produce the trace file---------------------------");
   XBT_INFO("Producing the trace of the run into %s", basename(tracefilename));