X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a298a64b7e15c10d01ae886c4d9a1940d2c5845..4a6b0a991a67e6f2f67c03fed43529e078da7115:/src/mc/mc_client.h diff --git a/src/mc/mc_client.h b/src/mc/mc_client.h index fc1cf671ed..6b68dbe45d 100644 --- a/src/mc/mc_client.h +++ b/src/mc/mc_client.h @@ -4,23 +4,31 @@ /* 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 "src/mc/mc_protocol.h" SG_BEGIN_DECL() typedef struct s_mc_client { int active; int fd; -} s_mc_client_t, mc_client_t; +} s_mc_client_t, *mc_client_t; -extern s_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); +XBT_PRIVATE void MC_client_init(void); +XBT_PRIVATE void MC_client_handle_messages(void); +XBT_PRIVATE void MC_client_send_message(void* message, 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); +#endif + +void MC_client_main_loop(void); SG_END_DECL()