Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill a 'unused variable' warning when compiling without GTNets
[simgrid.git] / src / surf / surf_private.h
index 61e28b3..63c73ad 100644 (file)
 #define NO_MAX_DURATION -1.0
 extern double sg_tcp_gamma;
 extern int sg_maxmin_selective_update;
+#ifdef HAVE_GTNETS
+  extern double sg_gtnets_jitter;
+  extern int sg_gtnets_jitter_seed;
+#endif
 
 extern const char *surf_action_state_names[6];
 
@@ -75,16 +79,28 @@ const char *__surf_get_initial_path(void);
  */
 int __surf_is_absolute_file_path(const char *file_path);
 
+/*
+ * One link routing list
+ */
+typedef struct {
+       int src_id;
+       int dst_id;
+       void *link_ptr;
+}s_onelink, *s_onelink_t;
+
+
 /*
  * Routing logic
  */
 struct s_routing {
   const char *name;
   xbt_dict_t host_id; /* char* -> int* */
-
   xbt_dynar_t (*get_route)(int src, int dst);
+  xbt_dict_t (*get_onelink_routes)(void);
+  int (*is_router)(int id);
   void (*finalize)(void);
   int host_count;
+  int router_count;
 };
 XBT_PUBLIC(void) routing_model_create(size_t size_of_link,void *loopback);