Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove obsolete files.
[simgrid.git] / src / surf / network_gtnets_private.h
diff --git a/src/surf/network_gtnets_private.h b/src/surf/network_gtnets_private.h
deleted file mode 100644 (file)
index 293ac16..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Copyright (c) 2007-2012. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#ifndef _SURF_NETWORK_GTNETS_PRIVATE_H
-#define _SURF_NETWORK_GTNETS_PRIVATE_H
-
-#include "surf_private.h"
-#include "xbt/dict.h"
-
-typedef struct network_link_GTNETS {
-  s_surf_resource_t generic_resource;   /* Must remain first to allow casting */
-  /* Using this object with the public part of
-     model does not make sense */
-  double bw_current;
-  double lat_current;
-  int id;
-} s_network_link_GTNETS_t, *network_link_GTNETS_t;
-
-typedef struct surf_action_network_GTNETS {
-  s_surf_action_t generic_action;
-  double latency;
-  double lat_current;
-#ifdef HAVE_TRACING
-  int last_remains;
-#endif
-  lmm_variable_t variable;
-  double rate;
-  int suspended;
-#ifdef HAVE_TRACING
-  sg_routing_edge_t src;
-  sg_routing_edge_t dst;
-#endif //HAVE_TRACING
-} s_surf_action_network_GTNETS_t, *surf_action_network_GTNETS_t;
-
-xbt_dict_t network_card_ids;
-
-
-
-#endif                          /* _SURF_NETWORK_PRIVATE_H */