X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b66a56b70224f8fa165a162602120b48f67ff637..965056e4f95159e78816eca6edc8982928097b73:/src/surf/surf_interface.hpp diff --git a/src/surf/surf_interface.hpp b/src/surf/surf_interface.hpp index a636b30c9a..08d445b671 100644 --- a/src/surf/surf_interface.hpp +++ b/src/surf/surf_interface.hpp @@ -129,6 +129,8 @@ public: */ virtual ~Model(); + virtual void addTraces() =0; + /** * @brief Get the name of the current Model * @@ -277,7 +279,6 @@ public: * @param constraint The lmm constraint associated to this Resource if it is part of a LMM component */ Resource(ModelPtr model, const char *name, xbt_dict_t props, lmm_constraint_t constraint); - /** * @brief Resource constructor * @@ -625,7 +626,6 @@ public: /** * @brief Get the state set in which the action is - * @details [TODO] * * @return The state set in which the action is */ @@ -644,41 +644,6 @@ protected: double m_finish; /**< finish time : this is modified during the run and fluctuates until the task is completed */ private: - int resourceUsed(void *resource_id); - - /** - * @brief Share the resources to the actions - * @details [TODO] - * - * @param now [TODO] - * @return in how much time the next action may terminatedescription] - */ - double shareResources(double now); - - /** - * @brief Update the current action state - * @details [TODO] - * - * @param now [TODO] - * @param delta [TODO] - */ - void updateActionsState(double now, double delta); - - /** - * @brief Update the [TODO] - * @details [TODO] - * - * @param id [TODO] - * @param event_type [TODO] - * @param value [TODO] - * @param time [TODO] - */ - void updateResourceState(void *id, tmgr_trace_event_t event_type, - double value, double time); - - ActionLmmListPtr p_modifiedSet; - xbt_heap_t p_actionHeap; - int m_selectiveUpdate; bool m_failed; double m_start; /**< start time */ char *p_category; /**< tracing category for categorized resource utilization monitoring */ @@ -695,6 +660,7 @@ public: virtual void updateRemainingLazy(double now); void heapInsert(xbt_heap_t heap, double key, enum heap_action_type hat); void heapRemove(xbt_heap_t heap); + void heapUpdate(xbt_heap_t heap, double key, enum heap_action_type hat); void updateIndexHeap(int i); lmm_variable_t getVariable() {return p_variable;} double getLastUpdate() {return m_lastUpdate;}