X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fa222c38f9b796be07ab4351ffc810a61a8fd705..9692d43fa911bdc2d6d0263a3cb3e22d5e3167fe:/src/mc/mc_replay.h diff --git a/src/mc/mc_replay.h b/src/mc/mc_replay.h index 8ac6454e5e..ad7a98d3d9 100644 --- a/src/mc/mc_replay.h +++ b/src/mc/mc_replay.h @@ -1,5 +1,3 @@ -/* simgrid/modelchecker.h - Formal Verification made possible in SimGrid */ - /* Copyright (c) 2008-2015. The SimGrid Team. * All rights reserved. */ @@ -9,18 +7,18 @@ #ifndef SIMGRID_MC_REPLAY_H #define SIMGRID_MC_REPLAY_H -#include +#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; /** Whether the replay mode is enabled */ -static inline int MC_record_replay_is_active(void) { +static inline int MC_record_replay_is_active() { return MC_record_path != 0; }