Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Renamed any gras stuff that was in xbt and should therefore be called
[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 #include "xbt/sysdep.h"
17 #include "xbt/log.h"
18 #include "xbt/error.h"
19 #include "xbt/dynar.h"
20 #include "gras/virtu.h"
21 #include "gras/process.h"
22
23 /**
24  * gras_process_data_t:
25  *
26  * Data for each process 
27  */
28 typedef struct {
29   /*queue of msgs storing the ones got while msg_wait'ing for something else */
30   xbt_dynar_t msg_queue; /* elm type: gras_msg_t */
31
32   /* registered callbacks for each message */
33   xbt_dynar_t cbl_list; /* elm type: gras_cblist_t */
34    
35   /* SG only elements. In RL, they are part of the OS ;) */
36   int chan;    /* Formated messages channel */
37   int rawChan; /* Unformated echange channel */
38   xbt_dynar_t sockets; /* all sockets known to this process */
39
40   /* globals of the process */
41   void *userdata;               
42 } gras_procdata_t;
43
44 /* Access */
45 xbt_dynar_t gras_socketset_get(void);
46
47 /* FIXME: mv to _private? */
48 gras_procdata_t *gras_procdata_get(void);
49 void gras_procdata_init(void);
50 void gras_procdata_exit(void);
51 #endif  /* GRAS_VIRTU_INTERFACE_H */