Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / src / instr / jedule / jedule_sd_binding.cpp
index f34ef62..ea2b223 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -22,7 +22,7 @@ void jedule_log_sd_event(const_SD_task_t task)
   simgrid::jedule::Event event(std::string(SD_task_get_name(task)), SD_task_get_start_time(task),
                                SD_task_get_finish_time(task), "SD");
   event.add_resources(*task->allocation);
-  my_jedule->event_set_.emplace_back(std::move(event));
+  my_jedule->add_event(event);
 }
 
 void jedule_sd_init()
@@ -31,7 +31,6 @@ void jedule_sd_init()
   XBT_DEBUG("root name %s\n", root_comp->get_cname());
 
   my_jedule = new simgrid::jedule::Jedule(root_comp->get_name());
-  my_jedule->root_container_.create_hierarchy(root_comp);
 }
 
 void jedule_sd_exit()
@@ -50,6 +49,7 @@ void jedule_sd_dump(const char * filename)
     }
 
     FILE* fh = fopen(fname.c_str(), "w");
+    xbt_assert(fh != nullptr, "Failed to open file: %s", fname.c_str());
 
     my_jedule->write_output(fh);