X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/da6a8948438ab0798f492ed7bf5dad2a515ca04e..7ac4abc35931448d0bbc5f3c1260320dfe4110c9:/src/instr/instr_paje_containers.cpp diff --git a/src/instr/instr_paje_containers.cpp b/src/instr/instr_paje_containers.cpp index 16bbd9ba02..c2b651568a 100644 --- a/src/instr/instr_paje_containers.cpp +++ b/src/instr/instr_paje_containers.cpp @@ -138,7 +138,7 @@ container_t PJ_container_new (const char *name, e_container_types kind, containe newContainer->children = xbt_dict_new_homogeneous(nullptr); if (newContainer->father){ xbt_dict_set(newContainer->father->children, newContainer->name, newContainer, nullptr); - CreateContainerEvent(newContainer); + LogContainerCreation(newContainer); } //register all kinds by name @@ -206,7 +206,7 @@ void PJ_container_free (container_t container) if (not TRACE_disable_destroy() && container != PJ_container_get_root()) { //do not trace the container destruction if user requests //or if the container is root - DestroyContainerEvent(container); + LogContainerDestruction(container); } //remove it from allContainers data structure