X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9dbeb2372ad9a123d0558132ebb6e003e10aa641..22cae46149e1fb4988ad9e46060c3e7ecd4e0e44:/src/mc/mc_safety.h diff --git a/src/mc/mc_safety.h b/src/mc/mc_safety.h index bd5ab1fe8c..22b061503c 100644 --- a/src/mc/mc_safety.h +++ b/src/mc/mc_safety.h @@ -1,5 +1,4 @@ -/* Copyright (c) 2007-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-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,36 +8,27 @@ #include -#include -#include -#include "mc_forward.h" -#include "mc_state.h" +#include -SG_BEGIN_DECL() +#include -typedef enum { - e_mc_reduce_unset, - e_mc_reduce_none, - e_mc_reduce_dpor -} e_mc_reduce_t; +#include "xbt/base.h" -extern XBT_INTERNAL e_mc_reduce_t mc_reduce_kind; +#include "src/mc/mc_forward.hpp" +#include "src/mc/mc_state.h" -void MC_modelcheck_safety(void); +namespace simgrid { +namespace mc { -typedef struct s_mc_visited_state{ - mc_snapshot_t system_state; - size_t heap_bytes_used; - int nb_processes; - int num; - int other_num; // dot_output for -}s_mc_visited_state_t, *mc_visited_state_t; +enum class ReductionMode { + unset, + none, + dpor, +}; -extern XBT_INTERNAL xbt_dynar_t visited_states; -XBT_INTERNAL mc_visited_state_t is_visited_state(mc_state_t graph_state); -XBT_INTERNAL void visited_state_free(mc_visited_state_t state); -XBT_INTERNAL void visited_state_free_voidp(void *s); +extern XBT_PRIVATE simgrid::mc::ReductionMode reduction_mode; -SG_END_DECL() +} +} #endif