X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/efd5719fdcd06a99d1fd644b81c7e9d578c08fc5..19759270d7d4b85df2dd599fe8936278d840780a:/src/surf/surf_interface.hpp diff --git a/src/surf/surf_interface.hpp b/src/surf/surf_interface.hpp index f450f3bd2e..3644497953 100644 --- a/src/surf/surf_interface.hpp +++ b/src/surf/surf_interface.hpp @@ -17,15 +17,15 @@ #include -#include "surf/trace_mgr.h" #include "xbt/lib.h" #include "surf/surf_routing.h" #include "simgrid/platf_interface.h" #include "surf/surf.h" #include "src/surf/surf_private.h" +#include "src/surf/trace_mgr.hpp" #include "src/internal_config.h" -extern XBT_PRIVATE tmgr_history_t history; +extern XBT_PRIVATE tmgr_fes_t history; #define NO_MAX_DURATION -1.0 /********* @@ -366,7 +366,7 @@ private: typedef struct { double peak; /**< The peak of the metric, ie its max value */ double scale; /**< Current availability of the metric according to the traces, in [0,1] */ - tmgr_trace_event_t event; /**< The associated trace event associated to the metric */ + tmgr_trace_iterator_t event; /**< The associated trace event associated to the metric */ } s_surf_metric_t; namespace simgrid { @@ -422,7 +422,7 @@ public: * @param value [TODO] * @param date [TODO] */ - virtual void updateState(tmgr_trace_event_t event_type, double value, double date)=0; + virtual void updateState(tmgr_trace_iterator_t event_type, double value, double date)=0; /** @brief Check if the current Resource is used (if it currently serves an action) */ virtual bool isUsed()=0;