X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6ca0df6f5bb17b5708c11a19846c0e90e25b7889..611d822b02f836d7abe031cced6adc4281ef4356:/teshsuite/surf/surf_usage/surf_usage.cpp diff --git a/teshsuite/surf/surf_usage/surf_usage.cpp b/teshsuite/surf/surf_usage/surf_usage.cpp index 37fc127080..27b9638e58 100644 --- a/teshsuite/surf/surf_usage/surf_usage.cpp +++ b/teshsuite/surf/surf_usage/surf_usage.cpp @@ -1,6 +1,6 @@ /* A few basic tests for the surf library */ -/* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2018. 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. */ @@ -8,6 +8,8 @@ #include "simgrid/host.h" #include "src/surf/cpu_interface.hpp" #include "src/surf/network_interface.hpp" +#include "surf/surf.hpp" +#include "xbt/config.h" XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test, "Messages specific for surf example"); @@ -66,7 +68,7 @@ int main(int argc, char **argv) XBT_INFO("Next Event : %g", surf_get_clock()); XBT_DEBUG("\t CPU actions"); - simgrid::kernel::resource::Action::StateSet* action_list = surf_cpu_model_pm->getFailedActionSet(); + simgrid::kernel::resource::Action::StateSet* action_list = surf_cpu_model_pm->get_failed_action_set(); while (not action_list->empty()) { simgrid::kernel::resource::Action& action = action_list->front(); XBT_INFO(" CPU Failed action"); @@ -74,7 +76,7 @@ int main(int argc, char **argv) action.unref(); } - action_list = surf_cpu_model_pm->getDoneActionSet(); + action_list = surf_cpu_model_pm->get_done_action_set(); while (not action_list->empty()) { simgrid::kernel::resource::Action& action = action_list->front(); XBT_INFO(" CPU Done action"); @@ -82,7 +84,7 @@ int main(int argc, char **argv) action.unref(); } - action_list = surf_network_model->getFailedActionSet(); + action_list = surf_network_model->get_failed_action_set(); while (not action_list->empty()) { simgrid::kernel::resource::Action& action = action_list->front(); XBT_INFO(" Network Failed action"); @@ -90,7 +92,7 @@ int main(int argc, char **argv) action.unref(); } - action_list = surf_network_model->getDoneActionSet(); + action_list = surf_network_model->get_done_action_set(); while (not action_list->empty()) { simgrid::kernel::resource::Action& action = action_list->front(); XBT_INFO(" Network Done action"); @@ -98,8 +100,9 @@ int main(int argc, char **argv) action.unref(); } - } while ((surf_network_model->getRunningActionSet()->size() || - surf_cpu_model_pm->getRunningActionSet()->size()) && surf_solve(-1.0) >= 0.0); + } while ( + (surf_network_model->get_running_action_set()->size() || surf_cpu_model_pm->get_running_action_set()->size()) && + surf_solve(-1.0) >= 0.0); XBT_DEBUG("Simulation Terminated");