Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
update requested changes
[simgrid.git] / src / instr / instr_paje_values.cpp
index 7936286..7c0505f 100644 (file)
@@ -4,6 +4,8 @@
 /* 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 <xbt/ex.hpp>
+
 #include "src/instr/instr_private.h"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_values, instr, "Paje tracing event system (values)");
@@ -25,19 +27,17 @@ val_t PJ_value_new (const char *name, const char *color, type_t father)
 
   xbt_dict_set (father->values, name, ret, nullptr);
   XBT_DEBUG("new value %s, child of %s", ret->name, ret->father->name);
-  new_pajeDefineEntityValue(ret);
+  LogEntityValue(ret);
   return ret;
 }
 
 val_t PJ_value_get_or_new (const char *name, const char *color, type_t father)
 {
   val_t ret = 0;
-  xbt_ex_t e;
-  TRY {
+  try {
     ret = PJ_value_get(name, father);
   }
-  CATCH(e) {
-    xbt_ex_free(e);
+  catch(xbt_ex& e) {
     ret = PJ_value_new(name, color, father);
   }
   return ret;