X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/113cc4086067c6d6f0624c8c08999cdb2d8815a9..8a0225ea633d9d3b665d709037dd5b9619d15ed7:/src/instr/instr_paje_types.cpp diff --git a/src/instr/instr_paje_types.cpp b/src/instr/instr_paje_types.cpp index c77cef2e29..75049077f6 100644 --- a/src/instr/instr_paje_types.cpp +++ b/src/instr/instr_paje_types.cpp @@ -80,6 +80,11 @@ void StateType::popEvent() events_.push_back(new StateEvent(issuer_, this, PAJE_PopState, nullptr, nullptr)); } +void StateType::popEvent(TIData* extra) +{ + events_.push_back(new StateEvent(issuer_, this, PAJE_PopState, nullptr, extra)); +} + VariableType::VariableType(std::string name, std::string color, Type* father) : Type(name, name, color, father) { XBT_DEBUG("VariableType %s(%lld), child of %s(%lld)", get_cname(), get_id(), father->get_cname(), father->get_id());