X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e5854eff808d7e803e0f18a9ac8548d886e15522..d0ffc37686edcc803601f76ab51fdfed5fc2f241:/src/instr/instr_paje_values.c?ds=sidebyside diff --git a/src/instr/instr_paje_values.c b/src/instr/instr_paje_values.c index 488468b204..a2e5748c63 100644 --- a/src/instr/instr_paje_values.c +++ b/src/instr/instr_paje_values.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2012. The SimGrid Team. +/* Copyright (c) 2012-2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -30,6 +30,20 @@ val_t PJ_value_new (const char *name, const char *color, type_t father) 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 { + ret = PJ_value_get(name, father); + } + CATCH(e) { + xbt_ex_free(e); + ret = PJ_value_new(name, color, father); + } + return ret; +} + val_t PJ_value_get (const char *name, type_t father) { if (name == NULL || father == NULL){