X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b3aa71456ffe1bbebaa91708e1738dbb56fccaaa..a34d8237b8267686bbd259670f27da273ff5236e:/src/surf/sg_platf.c diff --git a/src/surf/sg_platf.c b/src/surf/sg_platf.c index e56cf6b0f7..504e9e37a4 100644 --- a/src/surf/sg_platf.c +++ b/src/surf/sg_platf.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011. The SimGrid Team. +/* Copyright (c) 2006-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -215,7 +215,8 @@ void sg_platf_new_route(sg_platf_route_cbarg_t route) { xbt_dynar_foreach(sg_platf_route_cb_list, iterator, fun) { fun(route); } -}void sg_platf_new_ASroute(sg_platf_route_cbarg_t ASroute) { +} +void sg_platf_new_ASroute(sg_platf_route_cbarg_t ASroute) { unsigned int iterator; sg_platf_route_cb_t fun; xbt_dynar_foreach(sg_platf_ASroute_cb_list, iterator, fun) { @@ -228,7 +229,8 @@ void sg_platf_new_bypassRoute(sg_platf_route_cbarg_t bypassRoute) { xbt_dynar_foreach(sg_platf_bypassRoute_cb_list, iterator, fun) { fun(bypassRoute); } -}void sg_platf_new_bypassASroute(sg_platf_route_cbarg_t bypassASroute) { +} +void sg_platf_new_bypassASroute(sg_platf_route_cbarg_t bypassASroute) { unsigned int iterator; sg_platf_route_cb_t fun; xbt_dynar_foreach(sg_platf_bypassASroute_cb_list, iterator, fun) { @@ -249,7 +251,7 @@ void sg_platf_new_trace(sg_platf_trace_cbarg_t trace) { fun(trace); } } -void sg_platf_new_trace_connect(sg_platf_trace_connect_cbarg_t trace_connect) { +void sg_platf_trace_connect(sg_platf_trace_connect_cbarg_t trace_connect) { unsigned int iterator; sg_platf_trace_connect_cb_t fun; xbt_dynar_foreach(sg_platf_trace_connect_cb_list, iterator, fun) { @@ -336,7 +338,7 @@ void sg_platf_new_AS_end() { /* ***************************************** */ /* TUTORIAL: New TAG */ -void sg_platf_new_gpu_end() { +void sg_platf_new_gpu(sg_platf_gpu_cbarg_t gpu) { unsigned int iterator; void_f_void_t fun; xbt_dynar_foreach(sg_platf_gpu_cb_list, iterator, fun) {