Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
commiting some more automatic source patching stuff, and renamed some of the
[simgrid.git] / src / simdag / sd_link.c
index 9a6d4c7..9533ca4 100644 (file)
@@ -1,3 +1,9 @@
+/* Copyright (c) 2006, 2007, 2008, 2009, 2010. 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. */
+
 #include "private.h"
 #include "simdag/simdag.h"
 #include "xbt/dict.h"
@@ -127,7 +133,7 @@ double SD_link_get_current_bandwidth(SD_link_t link)
   SD_CHECK_INIT_DONE();
   xbt_assert0(link != NULL, "Invalid parameter");
   return surf_workstation_model->extension.workstation.
-    get_link_bandwidth(link->surf_link);
+      get_link_bandwidth(link->surf_link);
 }
 
 /**
@@ -141,7 +147,7 @@ double SD_link_get_current_latency(SD_link_t link)
   SD_CHECK_INIT_DONE();
   xbt_assert0(link != NULL, "Invalid parameter");
   return surf_workstation_model->extension.workstation.
-    get_link_latency(link->surf_link);
+      get_link_latency(link->surf_link);
 }
 
 /**