Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Do not take NULL to mean 'the current address space' in dwarf expressions
[simgrid.git] / src / mc / mc_client.h
index d013a17..f5d01a5 100644 (file)
 
 SG_BEGIN_DECL()
 
+typedef struct s_mc_client {
+  int active;
+  int fd;
+} s_mc_client_t, *mc_client_t;
+
+extern 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);
+
+#ifdef HAVE_MC
+void MC_ignore(void* addr, size_t size);
+#endif
 
 SG_END_DECL()