X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f9e7b8886836bb988bac7570cdf9405e54d0ac4..8f3e7df6480d8da4db694b9ba382fa8c416ed916:/src/instr/instr_interface.c diff --git a/src/instr/instr_interface.c b/src/instr/instr_interface.c index 34d03af197..2a7bb195ce 100644 --- a/src/instr/instr_interface.c +++ b/src/instr/instr_interface.c @@ -84,7 +84,8 @@ void TRACE_mark(const char *mark_type, const char *mark_value) DEBUG2("MARK %s %s", mark_type, mark_value); type_t type = getEventType (mark_type, NULL, getRootContainer()->type); - new_pajeNewEvent (MSG_get_clock(), getRootContainer(), type, mark_value); + val_t value = getValue (mark_value, NULL, type); + new_pajeNewEvent (MSG_get_clock(), getRootContainer(), type, value); }