Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simdata cleanup from smx_action_t. Now all SIMIX's data structures [Cristian]
[simgrid.git] / src / gras / Virtu / virtu_private.h
1 /* $Id$ */
2
3 /* virtu[alization] - speciafic parts for each OS and for SG                */
4
5 /* module's private interface.                                              */
6
7 /* Copyright (c) 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
13 #ifndef GRAS_VIRTU_PRIVATE_H
14 #define GRAS_VIRTU_PRIVATE_H
15
16 #include "xbt/dynar.h"
17 #include "gras/Virtu/virtu_interface.h"
18 #include "simix/simix.h"
19 #include "gras/Msg/msg_private.h"
20
21 /** @brief Data for each process */
22 typedef struct {
23   /* globals of the process */
24   void *userdata;
25
26   /* data specific to each process for each module. 
27    * Registered with gras_procdata_add(), retrieved with gras_libdata_get() 
28    * This is the old interface, and will disapear before 3.2
29    */
30   xbt_set_t libdata;
31
32   /* data specific to each process for each module. 
33    * Registered with gras_module_add(), retrieved with gras_moddata_get() 
34    * This is the new interface
35    */
36   xbt_dynar_t moddata;
37
38   int pid;                      /* pid of process, only for SG */
39   int ppid;                     /* ppid of process, only for SG */
40
41   gras_msg_listener_t listener; /* the thread in charge of the incomming communication for this process */
42 } gras_procdata_t;
43
44 gras_procdata_t *gras_procdata_get(void);
45 void *gras_libdata_by_name_from_procdata(const char *name,
46                                          gras_procdata_t * pd);
47
48 #endif /* GRAS_VIRTU_PRIVATE_H */