Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2cb52fe0d3c7c48f503a1daedad2392797de5555
[simgrid.git] / src / gras_simix / Msg / gras_simix_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 #include "xbt/fifo.h"
17
18 /*
19  * Data of this module specific to each process 
20  * (used by sg_process.c to check some usual errors at the end of the simulation)
21  * FIXME: it could be cleaned up ?
22  */
23 typedef struct {
24   /* set headers */
25   unsigned int ID;
26   char        *name;
27   unsigned int name_len;
28
29   /* queue storing the msgs got while msg_wait'ing for something else. Reuse them ASAP. */
30   xbt_dynar_t msg_queue; /* elm type: s_gras_msg_t */
31
32   /* queue storing the msgs without callback got when handling. Feed them to wait() */
33   xbt_dynar_t msg_waitqueue; /* elm type: s_gras_msg_t */
34
35   /* registered callbacks for each message */
36   xbt_dynar_t cbl_list; /* elm type: gras_cblist_t */
37    
38   /* registered timers */
39   xbt_dynar_t timers; /* elm type: s_gras_timer_t */
40         
41         /* queue storing the msgs that have to received and the process synchronization made (wait the surf action done) */
42         xbt_fifo_t msg_to_receive_queue; /* elm type: s_gras_msg_t */
43
44 } s_gras_msg_procdata_t,*gras_msg_procdata_t;
45
46
47 void gras_msg_send_namev(gras_socket_t  sock, 
48                          const char    *namev, 
49                          void          *payload);
50
51 #define GRAS_PROTOCOL_VERSION '\0';
52
53
54 #endif  /* GRAS_MSG_INTERFACE_H */