X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3ebb95127bac9bc6d8ba66319f1db561e9a5c6c1..8ac5092caa1f74c8636bab24367a83fb591fffd0:/src/instr/jedule/jedule_sd_binding.cpp diff --git a/src/instr/jedule/jedule_sd_binding.cpp b/src/instr/jedule/jedule_sd_binding.cpp index 0da355cfdd..4206fdb918 100644 --- a/src/instr/jedule/jedule_sd_binding.cpp +++ b/src/instr/jedule/jedule_sd_binding.cpp @@ -1,26 +1,18 @@ -/* Copyright (c) 2010-2015. The SimGrid Team. +/* Copyright (c) 2010-2016. 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. */ #include "xbt/asserts.h" - -#include "src/surf/surf_private.h" -#include "surf/surf.h" - #include "simgrid/jedule/jedule_sd_binding.h" -#include "simgrid/simdag.h" -#include "simgrid/s4u/As.hpp" -#include "simgrid/s4u/engine.hpp" -#include #include "simgrid/forward.h" -#include "simgrid/jedule/jedule.hpp" -#include "simgrid/jedule/jedule_events.hpp" -#include "simgrid/jedule/jedule_platform.hpp" #include "../../simdag/simdag_private.hpp" +#include "simgrid/jedule/jedule.hpp" +#include "simgrid/s4u/NetZone.hpp" +#include "simgrid/s4u/engine.hpp" #if HAVE_JEDULE @@ -33,15 +25,15 @@ void jedule_log_sd_event(SD_task_t task) { xbt_assert(task != nullptr); - jed_event_t event = - new simgrid::jedule::Event(std::string(SD_task_get_name(task)), task->start_time, task->finish_time,"SD"); + jed_event_t event = new simgrid::jedule::Event(std::string(SD_task_get_name(task)), + SD_task_get_start_time(task), SD_task_get_finish_time(task), "SD"); event->addResources(task->allocation); my_jedule->event_set.push_back(event); } -void jedule_setup_platform() +void jedule_sd_init() { - AS_t root_comp = simgrid::s4u::Engine::instance()->rootAs(); + sg_netzone_t root_comp = simgrid::s4u::Engine::instance()->netRoot(); XBT_DEBUG("root name %s\n", root_comp->name()); my_jedule = new simgrid::jedule::Jedule(); @@ -51,15 +43,6 @@ void jedule_setup_platform() my_jedule->root_container = root_container; } -void jedule_sd_cleanup() -{ - my_jedule->cleanupOutput(); -} - -void jedule_sd_init() -{ -} - void jedule_sd_exit(void) { delete my_jedule;