X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3693b5b63b04a3bedf77bb0c550f28ee917ee6e7..66013c251781d4c2e926377d2e492334aa6e47ea:/src/mc/checker/CommunicationDeterminismChecker.cpp diff --git a/src/mc/checker/CommunicationDeterminismChecker.cpp b/src/mc/checker/CommunicationDeterminismChecker.cpp index 0a7a4a2974..1ec57246d2 100644 --- a/src/mc/checker/CommunicationDeterminismChecker.cpp +++ b/src/mc/checker/CommunicationDeterminismChecker.cpp @@ -70,16 +70,16 @@ static void restore_communications_pattern(simgrid::mc::State* state) patterns_copy(incomplete_communications_pattern[i], state->incomplete_comm_pattern_[i]); } -static char* print_determinism_result(simgrid::mc::CommPatternDifference diff, int process, +static char* print_determinism_result(simgrid::mc::CommPatternDifference diff, aid_t process, const simgrid::mc::PatternCommunication* comm, unsigned int cursor) { char* type; char* res; if (comm->type == simgrid::mc::PatternCommunicationType::send) - type = bprintf("The send communications pattern of the process %d is different!", process - 1); + type = bprintf("The send communications pattern of the process %ld is different!", process - 1); else - type = bprintf("The recv communications pattern of the process %d is different!", process - 1); + type = bprintf("The recv communications pattern of the process %ld is different!", process - 1); using simgrid::mc::CommPatternDifference; switch (diff) { @@ -129,7 +129,7 @@ static void update_comm_pattern(simgrid::mc::PatternCommunication* comm_pattern, namespace simgrid { namespace mc { -void CommunicationDeterminismChecker::deterministic_comm_pattern(int process, const PatternCommunication* comm, +void CommunicationDeterminismChecker::deterministic_comm_pattern(aid_t process, const PatternCommunication* comm, int backtracking) { if (not backtracking) { @@ -261,7 +261,7 @@ void CommunicationDeterminismChecker::complete_comm_pattern(const kernel::activi } } -CommunicationDeterminismChecker::CommunicationDeterminismChecker(Session& s) : Checker(s) {} +CommunicationDeterminismChecker::CommunicationDeterminismChecker(Session& s) : Checker() {} CommunicationDeterminismChecker::~CommunicationDeterminismChecker() = default; @@ -537,7 +537,7 @@ void CommunicationDeterminismChecker::real_run() void CommunicationDeterminismChecker::run() { XBT_INFO("Check communication determinism"); - mcapi::get().s_initialize(); + mcapi::get().session_initialize(); this->prepare(); this->real_run();