X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/347996b4a10c4e8579080692afa60e0afb88b60a..a9113d6f217e32068b356fa249923e0c9be5a5b7:/src/surf/instr_surf.cpp diff --git a/src/surf/instr_surf.cpp b/src/surf/instr_surf.cpp index 230805a286..8cf1ecfdd6 100644 --- a/src/surf/instr_surf.cpp +++ b/src/surf/instr_surf.cpp @@ -1,50 +1,24 @@ -/* Copyright (c) 2010, 2012-2015. The SimGrid Team. +/* Copyright (c) 2010, 2012-2018. 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 "src/instr/instr_private.h" +#include "src/instr/instr_private.hpp" #include "src/surf/surf_interface.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_surf, instr, "Tracing Surf"); -void TRACE_surf_alloc(void) -{ - TRACE_surf_resource_utilization_alloc(); -} - -void TRACE_surf_release(void) -{ - TRACE_surf_resource_utilization_release(); -} - void TRACE_surf_host_set_speed(double date, const char *resource, double speed) { if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) { - container_t container = PJ_container_get(resource); - type_t type = PJ_type_get ("power", container->type); - new_pajeSetVariable(date, container, type, speed); + simgrid::instr::Container::byName(resource)->getVariable("power")->setEvent(date, speed); } } void TRACE_surf_link_set_bandwidth(double date, const char *resource, double bandwidth) { if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) { - container_t container = PJ_container_get(resource); - type_t type = PJ_type_get ("bandwidth", container->type); - new_pajeSetVariable(date, container, type, bandwidth); + simgrid::instr::Container::byName(resource)->getVariable("bandwidth")->setEvent(date, bandwidth); } } - -void TRACE_surf_action(surf_action_t surf_action, const char *category) -{ - if (!TRACE_is_enabled()) - return; - if (!TRACE_categorized ()) - return; - if (!category) - return; - - surf_action->setCategory(category); -}