X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..30563d26d6d84d528cda7deda5baa6730cebd948:/src/mc/remote/mc_protocol.h diff --git a/src/mc/remote/mc_protocol.h b/src/mc/remote/mc_protocol.h index 3aa610ac6e..39b5aa7a5d 100644 --- a/src/mc/remote/mc_protocol.h +++ b/src/mc/remote/mc_protocol.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2020. 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. */ @@ -6,14 +6,11 @@ #ifndef SIMGRID_MC_PROTOCOL_H #define SIMGRID_MC_PROTOCOL_H -#include - -#include - #include "mc/datatypes.h" #include "simgrid/forward.h" +#include "stdint.h" -SG_BEGIN_DECL() +SG_BEGIN_DECL // ***** Environment variables for passing context to the model-checked process @@ -40,8 +37,6 @@ enum e_mc_message_type { MC_MESSAGE_WAITING, MC_MESSAGE_SIMCALL_HANDLE, MC_MESSAGE_ASSERTION_FAILED, - // MCer request to finish the restoration: - MC_MESSAGE_RESTORE, MC_MESSAGE_ACTOR_ENABLED, MC_MESSAGE_ACTOR_ENABLED_REPLY }; @@ -114,6 +109,6 @@ struct s_mc_message_actor_enabled_t { XBT_PRIVATE const char* MC_message_type_name(enum e_mc_message_type type); -SG_END_DECL() +SG_END_DECL #endif