]> AND Public Git Repository - simgrid.git/blobdiff - src/msg/msg_private.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
factor suspend/resume across Activities
[simgrid.git] / src / msg / msg_private.hpp
index 4905c672f139442ef4c39257ad9f1132dc9aa574..5e0c177bf38e2820e24325b7ac9c37929b1b9f59 100644 (file)
@@ -18,8 +18,9 @@ struct s_simdata_task_t {
   ~s_simdata_task_t()
   {
     /* parallel tasks only */
-    delete[] this->host_list;
-    /* flops_parallel_amount and bytes_parallel_amount are automatically deleted in ~L07Action */
+    delete[] host_list;
+    delete[] flops_parallel_amount;
+    delete[] bytes_parallel_amount;
   }
   void setUsed();
   void setNotUsed() { this->isused = false; }