Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a8d79c08742c4c495a9f873bc88da88862ed409c
[simgrid.git] / src / surf / network_gtnets_private.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef _SURF_NETWORK_GTNETS_PRIVATE_H
9 #define _SURF_NETWORK_GTNETS_PRIVATE_H
10
11 #include "surf_private.h"
12 #include "xbt/dict.h"
13
14 typedef struct network_link_GTNETS {
15   surf_model_t model;   /* Any such object, added in a trace
16                                    should start by this field!!! */
17   /* Using this object with the public part of
18      model does not make sense */
19   char *name;
20   double bw_current;
21   double lat_current;
22   int id;
23   /*holds the properties associated witht the link*/
24   xbt_dict_t properties;
25 } s_network_link_GTNETS_t, *network_link_GTNETS_t;
26
27
28 typedef struct network_card_GTNETS {
29   char *name;
30   int id;
31 } s_network_card_GTNETS_t, *network_card_GTNETS_t;
32
33 typedef struct surf_action_network_GTNETS {
34   s_surf_action_t generic_action;
35   double latency;
36   double lat_current;
37   lmm_variable_t variable;
38   double rate;
39   int suspended;
40   network_card_GTNETS_t src;
41   network_card_GTNETS_t dst;
42 } s_surf_action_network_GTNETS_t, *surf_action_network_GTNETS_t;
43
44 extern xbt_dict_t network_card_set;
45
46
47 #endif                          /* _SURF_NETWORK_PRIVATE_H */
48
49