X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fd9d52c0c7a9c96221fff2013cdeef05b6e979e2..9575359fcebd3a393b65891c293990d1a882eb34:/src/mc/mc_client_api.cpp diff --git a/src/mc/mc_client_api.cpp b/src/mc/mc_client_api.cpp index d12eeffb74..7fd76d2e87 100644 --- a/src/mc/mc_client_api.cpp +++ b/src/mc/mc_client_api.cpp @@ -8,14 +8,14 @@ #include #include -#include "src/mc/mc_record.h" -#include "src/mc/mc_private.h" -#include "src/mc/mc_ignore.h" -#include "src/mc/mc_protocol.h" -#include "src/mc/Client.hpp" #include "src/mc/ModelChecker.hpp" +#include "src/mc/mc_ignore.h" +#include "src/mc/mc_private.h" +#include "src/mc/mc_record.h" +#include "src/mc/remote/Client.hpp" +#include "src/mc/remote/mc_protocol.h" -/** \file mc_client_api.cpp +/** @file mc_client_api.cpp * * This is the implementation of the API used by the user simulated program to * communicate with the MC (declared in modelchecker.h). @@ -70,7 +70,7 @@ void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value) /** @brief Register a stack in the model checker * * The stacks are allocated in the heap. The MC handle them especially - * when we analyse/compare the content of the heap so it must be told where + * when we analyze/compare the content of the heap so it must be told where * they are with this function. * * @param stack @@ -78,7 +78,7 @@ void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value) * @param context * @param size Size of the stack */ -void MC_register_stack_area(void *stack, smx_process_t process, ucontext_t* context, size_t size) +void MC_register_stack_area(void *stack, smx_actor_t process, ucontext_t* context, size_t size) { xbt_assert(mc_model_checker == nullptr); if (!MC_is_active())