X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4340c977641036e7aa8ae5dcb69ccb3cac1df3c5..3ec51ec00350d47f090b2661ae07509dc6e1c74f:/src/mc/mc_replay.h diff --git a/src/mc/mc_replay.h b/src/mc/mc_replay.h index 934a30e826..273c92c68b 100644 --- a/src/mc/mc_replay.h +++ b/src/mc/mc_replay.h @@ -1,7 +1,4 @@ -/* simgrid/modelchecker.h - Formal Verification made possible in SimGrid */ - -/* Copyright (c) 2008-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2008-2017. 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. */ @@ -9,19 +6,20 @@ #ifndef SIMGRID_MC_REPLAY_H #define SIMGRID_MC_REPLAY_H -#include +#include "xbt/base.h" +#include SG_BEGIN_DECL() /** Replay path (if any) in string representation * - * This is a path as generated by `MC_record_stack_to_string()`. + * This is using the format generated by traceToString(). */ -XBT_PUBLIC_DATA(char*) MC_record_path; +XBT_PUBLIC_DATA(std::string) MC_record_path; /** Whether the replay mode is enabled */ -static inline int MC_record_replay_is_active(void) { - return MC_record_path != 0; +static inline int MC_record_replay_is_active() { + return not MC_record_path.empty(); } SG_END_DECL()