X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/95bcda88a7fcfa168381cba0eedadb1e4937d0b3..740d50812a81c59013f22888ab313da5a8113227:/src/mc/mc_client.h diff --git a/src/mc/mc_client.h b/src/mc/mc_client.h index f5d01a57bf..fb12858964 100644 --- a/src/mc/mc_client.h +++ b/src/mc/mc_client.h @@ -4,10 +4,13 @@ /* 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. */ -#ifndef MC_CLIENT_H -#define MC_CLIENT_H +#ifndef SIMGRID_MC_CLIENT_H +#define SIMGRID_MC_CLIENT_H -#include +#include + +#include +#include "src/mc/mc_protocol.h" SG_BEGIN_DECL() @@ -16,17 +19,19 @@ typedef struct s_mc_client { int fd; } s_mc_client_t, *mc_client_t; -extern mc_client_t mc_client; +extern XBT_PRIVATE mc_client_t mc_client; -void MC_client_init(void); -void MC_client_hello(void); -void MC_client_handle_messages(void); -void MC_client_send_message(void* message, size_t size); +XBT_PRIVATE void MC_client_init(void); +XBT_PRIVATE void MC_client_handle_messages(void); +XBT_PRIVATE void MC_client_send_message(void* message, std::size_t size); +XBT_PRIVATE void MC_client_send_simple_message(e_mc_message_type type); #ifdef HAVE_MC -void MC_ignore(void* addr, size_t size); +void MC_ignore(void* addr, std::size_t size); #endif +void MC_client_main_loop(void); + SG_END_DECL() #endif