Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Get rid of the ugly "value" out parameter in MC_state_get_request()
[simgrid.git] / src / mc / mc_replay.h
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /* simgrid/modelchecker.h - Formal Verification made possible in SimGrid    */
8
9 #ifndef SIMGRID_MC_REPLAY_H
10 #define SIMGRID_MC_REPLAY_H
11
12 #include <xbt/base.h>
13
14 SG_BEGIN_DECL()
15
16 /** Replay path (if any) in string representation
17  *
18  *  This is using the format generated by traceToString().
19  */
20 XBT_PUBLIC_DATA(char*) MC_record_path;
21
22 /** Whether the replay mode is enabled */
23 static inline int MC_record_replay_is_active(void) {
24   return MC_record_path != 0;
25 }
26
27 SG_END_DECL()
28
29 #endif