X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a469c9dca9ce25cee1a52682d7eb7bbd736a49b..d5c5c81b80995b117219aa475399de9aaeef5763:/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 153da3f99d..6299c7cf99 100644 --- a/teshsuite/surf/surf_usage/surf_usage.cpp +++ b/teshsuite/surf/surf_usage/surf_usage.cpp @@ -16,16 +16,16 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test, "Messages specific for surf example"); static const char* string_action(simgrid::kernel::resource::Action::State state) { switch (state) { - case simgrid::kernel::resource::Action::State::ready: - return "SURF_ACTION_READY"; + case simgrid::kernel::resource::Action::State::inited: + return "SURF_ACTION_INITED"; case simgrid::kernel::resource::Action::State::running: return "SURF_ACTION_RUNNING"; case simgrid::kernel::resource::Action::State::failed: return "SURF_ACTION_FAILED"; case simgrid::kernel::resource::Action::State::done: return "SURF_ACTION_DONE"; - case simgrid::kernel::resource::Action::State::not_in_the_system: - return "SURF_ACTION_NOT_IN_THE_SYSTEM"; + case simgrid::kernel::resource::Action::State::ignored: + return "SURF_ACTION_IGNORED"; default: return "INVALID STATE"; }