Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Only adds the XBT_PUBLIC macro decoration a the begining of the public API functions.
[simgrid.git] / src / gras / Msg / msg_interface.h
1 /* $Id$ */
2
3 /* messaging - high level communication (send/receive messages)             */
4
5 /* module's public interface exported within GRAS, but not to end user.     */
6
7 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
8
9 /* This program is free software; you can redistribute it and/or modify it
10  * under the terms of the license (GNU LGPL) which comes with this package. */
11
12 #ifndef GRAS_MSG_INTERFACE_H
13 #define GRAS_MSG_INTERFACE_H
14
15 #include "gras/transport.h"
16
17 /*
18  * Data of this module specific to each process 
19  * (used by sg_process.c to check some usual errors at the end of the simulation)
20  * FIXME: it could be cleaned up ?
21  */
22 typedef struct {
23   /* set headers */
24   unsigned int ID;
25   char        *name;
26   unsigned int name_len;
27
28   /*queue of msgs storing the ones got while msg_wait'ing for something else */
29   xbt_dynar_t msg_queue; /* elm type: s_gras_msg_t */
30
31   /* registered callbacks for each message */
32   xbt_dynar_t cbl_list; /* elm type: gras_cblist_t */
33    
34   /* registered timers */
35   xbt_dynar_t timers; /* elm type: s_gras_timer_t */
36
37 } s_gras_msg_procdata_t,*gras_msg_procdata_t;
38
39
40 XBT_PUBLIC void gras_msg_send_namev(gras_socket_t  sock, 
41                          const char    *namev, 
42                          void          *payload);
43
44 #define GRAS_PROTOCOL_VERSION '\0';
45
46
47 #endif  /* GRAS_MSG_INTERFACE_H */