X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c7edbf695cf8cae1e5bbca502b505d349510eebb..0ff40b115c4a7f131b2ffab880faf600e96cfc06:/src/instr/instr_config.cpp diff --git a/src/instr/instr_config.cpp b/src/instr/instr_config.cpp index b0640bbee0..eb86e1d068 100644 --- a/src/instr/instr_config.cpp +++ b/src/instr/instr_config.cpp @@ -3,7 +3,7 @@ /* 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 "surf/surf.h" #include #include @@ -117,10 +117,10 @@ int TRACE_start() } /* activate trace */ - if (trace_active == 1) { + if (trace_active) { THROWF(tracing_error, 0, "Tracing is already active"); } - trace_active = 1; + trace_active = true; XBT_DEBUG("Tracing is on"); } return 0; @@ -138,13 +138,12 @@ int TRACE_end() TRACE_generate_viva_cat_conf(); /* dump trace buffer */ - simgrid::instr::TRACE_last_timestamp_to_dump = surf_get_clock(); - TRACE_paje_dump_buffer(1); + TRACE_last_timestamp_to_dump = surf_get_clock(); + TRACE_paje_dump_buffer(true); /* destroy all data structures of tracing (and free) */ - PJ_container_free_all(); - recursiveDestroyType (PJ_type_get_root()); - PJ_container_release(); + delete PJ_container_get_root(); + delete simgrid::instr::Type::getRootType(); rootType = nullptr; /* close the trace files */ @@ -159,7 +158,7 @@ int TRACE_end() } /* de-activate trace */ - trace_active = 0; + trace_active = false; XBT_DEBUG("Tracing is off"); XBT_DEBUG("Tracing system is shutdown"); } @@ -304,11 +303,11 @@ char *TRACE_get_viva_cat_conf () void TRACE_global_init() { - static int is_initialised = 0; + static bool is_initialised = false; if (is_initialised) return; - is_initialised = 1; + is_initialised = true; /* name of the tracefile */ xbt_cfg_register_string (OPT_TRACING_FILENAME, "simgrid.trace", nullptr, "Trace file created by the instrumented SimGrid."); xbt_cfg_register_boolean(OPT_TRACING, "no", nullptr, "Enable Tracing."); @@ -352,7 +351,7 @@ void TRACE_global_init() xbt_cfg_register_alias(OPT_TRACING_ONELINK_ONLY, "tracing/onelink_only"); /* instrumentation can be considered configured now */ - trace_configured = 1; + trace_configured = true; } static void print_line (const char *option, const char *desc, const char *longdesc, int detailed) @@ -480,9 +479,9 @@ static void output_types (const char *name, xbt_dynar_t types, FILE *file) static void output_categories(const char* name, FILE* file) { - unsigned int i = simgrid::instr::created_categories.size(); + unsigned int i = created_categories.size(); fprintf (file, " values = ("); - for (auto const& cat : simgrid::instr::created_categories) { + for (auto const& cat : created_categories) { --i; fprintf(file, "\"%s%s\"", name, cat.c_str()); if (i > 0) { @@ -560,7 +559,7 @@ static void generate_cat_configuration (const char *output, const char *name, in { if (output && strlen(output) > 0){ //check if we do have categories declared - if (simgrid::instr::created_categories.empty()) { + if (created_categories.empty()) { XBT_INFO("No categories declared, ignoring generation of %s graph configuration", name); return; } @@ -598,7 +597,7 @@ void instr_pause_tracing () }else{ XBT_DEBUG ("Tracing is being paused."); } - trace_enabled = 0; + trace_enabled = false; XBT_DEBUG ("Tracing is paused."); } @@ -613,7 +612,7 @@ void instr_resume_tracing () if (previous_trace_state != -1){ trace_enabled = previous_trace_state; }else{ - trace_enabled = 1; + trace_enabled = true; } XBT_DEBUG ("Tracing is resumed."); previous_trace_state = -1;