Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Interface revolution: do not try to survive to malloc failure
[simgrid.git] / src / gras / Virtu / virtu_interface.h
1 /* $Id$ */
2
3 /* virtu[alization] - speciafic parts for each OS and for SG                */
4
5 /* module's public interface  exported within GRAS, but not to end user.    */
6
7 /* Authors: Martin Quinson                                                  */
8 /* Copyright (C) 2004 Martin Quinson.                                       */
9
10 /* This program is free software; you can redistribute it and/or modify it
11    under the terms of the license (GNU LGPL) which comes with this package. */
12
13 #ifndef GRAS_VIRTU_INTERFACE_H
14 #define GRAS_VIRTU_INTERFACE_H
15
16 /**
17  * gras_process_data_t:
18  *
19  * Data for each process 
20  */
21 typedef struct {
22   /*queue of msgs storing the ones got while msg_wait'ing for something else */
23   gras_dynar_t *msg_queue; /* elm type: gras_msg_t */
24
25   /* registered callbacks for each message */
26   gras_dynar_t *cbl_list; /* elm type: gras_cblist_t */
27    
28   /* SG only elements. In RL, they are part of the OS ;) */
29   int chan;    /* Formated messages channel */
30   int rawChan; /* Unformated echange channel */
31   gras_dynar_t *sockets; /* all sockets known to this process */
32
33   /* globals of the process */
34   void *userdata;               
35 } gras_procdata_t;
36
37 /* Access */
38 gras_dynar_t * gras_socketset_get(void);
39
40 /* FIXME: mv to _private? */
41 gras_procdata_t *gras_procdata_get(void);
42 void gras_procdata_init(void);
43 void gras_procdata_exit(void);
44 #endif  /* GRAS_VIRTU_INTERFACE_H */