X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d29ab72e79378eb7527238f5db164234f1c0cf8b..814f0122ea0074dfb67398a79067c01267bc0b40:/src/mc/mc_private.h diff --git a/src/mc/mc_private.h b/src/mc/mc_private.h index 4d2e916f8d..c9ea7c2599 100644 --- a/src/mc/mc_private.h +++ b/src/mc/mc_private.h @@ -23,8 +23,6 @@ #include "mc/datatypes.h" #include "xbt/fifo.h" #include "xbt/config.h" -#include -#include #include "xbt/function_types.h" #include "xbt/mmalloc.h" @@ -50,7 +48,7 @@ typedef struct s_mc_function_index_item s_mc_function_index_item_t, *mc_function * @param pid PID of the target process * @param socket FD for the communication socket **in server mode** (or -1 otherwise) */ -void MC_init_pid(pid_t pid, int socket); +void MC_init_model_checker(pid_t pid, int socket); extern FILE *dot_output; extern const char* colors[13]; @@ -126,15 +124,6 @@ typedef struct s_local_variable{ int region; }s_local_variable_t, *local_variable_t; -/* *********** Sets *********** */ - -typedef struct s_mc_address_set *mc_address_set_t; - -mc_address_set_t mc_address_set_new(void); -void mc_address_set_free(mc_address_set_t* p); -void mc_address_add(mc_address_set_t p, const void* value); -bool mc_address_test(mc_address_set_t p, const void* value); - /* *********** Hash *********** */ /** \brief Hash the current state @@ -155,6 +144,8 @@ void MC_dump_stacks(FILE* file); void MC_report_assertion_error(void); +void MC_invalidate_cache(void); + SG_END_DECL() #endif