X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/34ee0d36886596c4a93a84fae7b70c7ae8edb3e9..c5418e2f161ecfa4af596fb3d25e8ac696935af3:/src/instr/instr_paje_trace.cpp diff --git a/src/instr/instr_paje_trace.cpp b/src/instr/instr_paje_trace.cpp index 13a48288b0..84c6059dea 100644 --- a/src/instr/instr_paje_trace.cpp +++ b/src/instr/instr_paje_trace.cpp @@ -68,14 +68,14 @@ void TRACE_paje_dump_buffer (int force) return; XBT_DEBUG("%s: dump until %f. starts", __FUNCTION__, TRACE_last_timestamp_to_dump); if (force){ - for (auto event : buffer){ + for (auto const& event : buffer) { event->print(); delete event; } buffer.clear(); }else{ std::vector::iterator i = buffer.begin(); - for (auto event :buffer){ + for (auto const& event : buffer) { double head_timestamp = event->timestamp; if (head_timestamp > TRACE_last_timestamp_to_dump) break; @@ -92,7 +92,7 @@ void buffer_debug(std::vector *buf); void buffer_debug(std::vector *buf) { return; XBT_DEBUG(">>>>>> Dump the state of the buffer. %zu events", buf->size()); - for (auto event :*buf){ + for (auto const& event : *buf) { event->print(); XBT_DEBUG("%p %s", event, stream.str().c_str()); stream.str(""); @@ -192,7 +192,7 @@ void TRACE_paje_end() { XBT_DEBUG("Filename %s is closed", filename); } -void DefineContainerEvent(type_t type) +void DefineContainerEvent(Type* type) { XBT_DEBUG("%s: event_type=%d", __FUNCTION__, PAJE_DefineContainerType); //print it @@ -210,9 +210,7 @@ void DefineContainerEvent(type_t type) //-- } - - -void LogVariableTypeDefinition(type_t type) +void LogVariableTypeDefinition(Type* type) { XBT_DEBUG("%s: event_type=%d", __FUNCTION__, PAJE_DefineVariableType); @@ -233,8 +231,7 @@ if (instr_fmt_type == instr_fmt_paje) { } } - -void LogStateTypeDefinition(type_t type) +void LogStateTypeDefinition(Type* type) { //print it if (instr_fmt_type == instr_fmt_paje) { @@ -250,8 +247,7 @@ if (instr_fmt_type == instr_fmt_paje) { } } - -void LogDefineEventType(type_t type) +void LogDefineEventType(Type* type) { //print it if (instr_fmt_type == instr_fmt_paje) { @@ -267,7 +263,7 @@ void LogDefineEventType(type_t type) } } -void LogLinkTypeDefinition(type_t type, Type* source, Type* dest) +void LogLinkTypeDefinition(Type* type, Type* source, Type* dest) { XBT_DEBUG("%s: event_type=%d", __FUNCTION__, PAJE_DefineLinkType); //print it @@ -284,7 +280,7 @@ if (instr_fmt_type == instr_fmt_paje) { } } -void LogEntityValue(value* val) +void LogEntityValue(Value* val) { XBT_DEBUG("%s: event_type=%d", __FUNCTION__, PAJE_DefineEntityValue); //print it @@ -467,7 +463,7 @@ void SubVariableEvent::print() { } } -SetStateEvent::SetStateEvent(double timestamp, container_t container, Type* type, value* val) +SetStateEvent::SetStateEvent(double timestamp, container_t container, Type* type, Value* val) { this->event_type = PAJE_SetState; this->timestamp = timestamp; @@ -509,7 +505,7 @@ void SetStateEvent::print() { } } -PushStateEvent::PushStateEvent(double timestamp, container_t container, Type* type, value* val, void* extra) +PushStateEvent::PushStateEvent(double timestamp, container_t container, Type* type, Value* val, void* extra) { this->event_type = PAJE_PushState; this->timestamp = timestamp; @@ -531,7 +527,7 @@ PushStateEvent::PushStateEvent(double timestamp, container_t container, Type* ty insert_into_buffer (this); } -PushStateEvent::PushStateEvent(double timestamp, container_t container, Type* type, value* val) +PushStateEvent::PushStateEvent(double timestamp, container_t container, Type* type, Value* val) : PushStateEvent(timestamp, container, type, val, nullptr) {} void PushStateEvent::print() { @@ -839,7 +835,7 @@ void EndLinkEvent::print() { } } -NewEvent::NewEvent(double timestamp, container_t container, Type* type, value* val) +NewEvent::NewEvent(double timestamp, container_t container, Type* type, Value* val) { this->event_type = PAJE_NewEvent; this->timestamp = timestamp;