Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
0f58113062489c9e02281072d003257fc0eb1838
[simgrid.git] / src / surf / network_private.h
1 /* Authors: Arnaud Legrand                                                  */
2
3 /* This program is free software; you can redistribute it and/or modify it
4    under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef _SURF_NETWORK_PRIVATE_H
7 #define _SURF_NETWORK_PRIVATE_H
8
9 #include "surf_private.h"
10
11 typedef struct surf_action_network {
12   s_surf_action_t generic_action;
13   lmm_variable_t variable;
14 } s_surf_action_network_t, *surf_action_network_t;
15
16 typedef struct network {
17   surf_resource_t resource;   /* Any such object, added in a trace
18                                  should start by this field!!! */
19   const char *name;
20 } s_network_t, *network_t;
21
22
23 #endif                          /* _SURF_NETWORK_PRIVATE_H */