X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..b2b3260ead87e53cc1047eca74372d81a3269867:/src/mc/mc_record.cpp diff --git a/src/mc/mc_record.cpp b/src/mc/mc_record.cpp index 8fff9d029d..5939b8401d 100644 --- a/src/mc/mc_record.cpp +++ b/src/mc/mc_record.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2015. The SimGrid Team. +/* Copyright (c) 2014-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -12,26 +12,26 @@ #include #include -#include -#include +#include "xbt/log.h" +#include "xbt/sysdep.h" #include "simgrid/simix.h" #include "src/kernel/context/Context.hpp" -#include "src/simix/ActorImpl.hpp" -#include "src/simix/smx_private.h" +#include "src/mc/mc_record.hpp" #include "src/mc/mc_replay.h" -#include "src/mc/mc_record.h" +#include "src/simix/ActorImpl.hpp" +#include "src/simix/smx_private.hpp" #include "src/mc/mc_base.h" #include "src/mc/Transition.hpp" -#if HAVE_MC -#include "src/mc/mc_request.h" -#include "src/mc/mc_private.h" -#include "src/mc/mc_state.h" -#include "src/mc/mc_smx.h" -#include "src/mc/Checker.hpp" +#if SIMGRID_HAVE_MC +#include "src/mc/checker/Checker.hpp" +#include "src/mc/mc_private.hpp" +#include "src/mc/mc_request.hpp" +#include "src/mc/mc_smx.hpp" +#include "src/mc/mc_state.hpp" #endif XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_record, mc, @@ -53,13 +53,12 @@ void replay(RecordTrace const& trace) // Choose a request: smx_actor_t process = SIMIX_process_from_PID(transition.pid); - if (!process) - xbt_die("Unexpected process."); + if (not process) + xbt_die("Unexpected process (pid:%d).", transition.pid); smx_simcall_t simcall = &(process->simcall); - if(!simcall || simcall->call == SIMCALL_NONE) - xbt_die("No simcall for this process."); - if (!simgrid::mc::request_is_visible(simcall) - || !simgrid::mc::request_is_enabled(simcall)) + if (not simcall || simcall->call == SIMCALL_NONE) + xbt_die("No simcall for process %d.", transition.pid); + if (not simgrid::mc::request_is_visible(simcall) || not simgrid::mc::actor_is_enabled(process)) xbt_die("Unexpected simcall."); // Execute the request: @@ -87,7 +86,7 @@ RecordTrace parseRecordTrace(const char* data) while (*current) { simgrid::mc::Transition item; - int count = sscanf(current, "%u/%u", &item.pid, &item.argument); + int count = sscanf(current, "%d/%d", &item.pid, &item.argument); if(count != 2 && count != 1) throw std::runtime_error("Could not parse record path"); res.push_back(item); @@ -103,7 +102,7 @@ RecordTrace parseRecordTrace(const char* data) return res; } -#if HAVE_MC +#if SIMGRID_HAVE_MC std::string traceToString(simgrid::mc::RecordTrace const& trace) {