Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix process_killall. Closes #186.
[simgrid.git] / src / surf / instr_surf.cpp
index 69d8a98..83f7e1e 100644 (file)
@@ -13,8 +13,8 @@ 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* type = PJ_type_get ("power", container->type);
-    new SetVariableEvent(date, container, type, speed);
+    simgrid::instr::Type* type = container->type_->getChild("power");
+    new simgrid::instr::SetVariableEvent(date, container, type, speed);
   }
 }
 
@@ -22,8 +22,8 @@ void TRACE_surf_link_set_bandwidth(double date, const char *resource, double ban
 {
   if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) {
     container_t container = PJ_container_get(resource);
-    Type* type = PJ_type_get ("bandwidth", container->type);
-    new SetVariableEvent(date, container, type, bandwidth);
+    simgrid::instr::Type* type = container->type_->getChild("bandwidth");
+    new simgrid::instr::SetVariableEvent(date, container, type, bandwidth);
   }
 }