X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c638214a29abfed2c93678be136ad7d2dcd1940e..60b5a5343a46b30521319379620c94d1314eb1bc:/src/simgrid/host.cpp diff --git a/src/simgrid/host.cpp b/src/simgrid/host.cpp index af11f632bf..63655a9a9f 100644 --- a/src/simgrid/host.cpp +++ b/src/simgrid/host.cpp @@ -52,10 +52,10 @@ int SURF_CPU_LEVEL; #include "surf/surf_routing.hpp" static XBT_INLINE void surf_cpu_free(void *r) { - delete static_cast(r); + delete static_cast(r); } static XBT_INLINE void routing_asr_host_free(void *p) { - delete static_cast(p); + delete static_cast(p); } @@ -111,10 +111,10 @@ void sg_host_surfcpu_destroy(sg_host_t host) { xbt_lib_unset(host_lib,host->key,SURF_CPU_LEVEL,1); } // ========== RoutingEdge ============ -RoutingEdgePtr sg_host_edge(sg_host_t host) { - return (RoutingEdgePtr) xbt_lib_get_level(host, ROUTING_HOST_LEVEL); +RoutingEdge *sg_host_edge(sg_host_t host) { + return (RoutingEdge*) xbt_lib_get_level(host, ROUTING_HOST_LEVEL); } -void sg_host_edge_set(sg_host_t host, RoutingEdgePtr edge) { +void sg_host_edge_set(sg_host_t host, RoutingEdge *edge) { xbt_lib_set(host_lib, host->key, ROUTING_HOST_LEVEL, edge); } void sg_host_edge_destroy(sg_host_t host, int do_callback) {