X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f6cb6d652781384a27432ebac89cd991a79c98e8..0dbb99cc5314cb03d9a34f80c88c0b5c0308133e:/src/instr/instr_private.h diff --git a/src/instr/instr_private.h b/src/instr/instr_private.h index 61cb07783d..3b3e272b7f 100644 --- a/src/instr/instr_private.h +++ b/src/instr/instr_private.h @@ -125,30 +125,10 @@ class PajeEvent { double timestamp_; e_event_type eventType_; virtual void print() = 0; - void* data; virtual ~PajeEvent(); }; //-------------------------------------------------- - -class DefineVariableTypeEvent : public PajeEvent -{ - public: - Type* type; - DefineVariableTypeEvent(Type* type); - void print() override; -}; -//-------------------------------------------------- - -class DefineStateTypeEvent : public PajeEvent { - Type* type; - -public: - DefineStateTypeEvent(Type* type); - void print() override; -}; - - class SetVariableEvent : public PajeEvent { private: Container* container; @@ -160,7 +140,6 @@ class SetVariableEvent : public PajeEvent { void print() override; }; - class AddVariableEvent:public PajeEvent { private: Container* container; @@ -171,7 +150,6 @@ class AddVariableEvent:public PajeEvent { AddVariableEvent(double timestamp, Container* container, Type* type, double value); void print() override; }; - //-------------------------------------------------- @@ -437,7 +415,7 @@ extern instr_fmt_type_t instr_fmt_type; SG_END_DECL() -void DefineContainerEvent(simgrid::instr::Type* type); +void LogContainerTypeDefinition(simgrid::instr::Type* type); void LogVariableTypeDefinition(simgrid::instr::Type* type); void LogStateTypeDefinition(simgrid::instr::Type* type); void LogLinkTypeDefinition(simgrid::instr::Type* type, simgrid::instr::Type* source, simgrid::instr::Type* dest);