Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
m_bound belongs to CpuAction; initialize it.
[simgrid.git] / src / surf / surf_interface.hpp
index 06ae981..4381fa7 100644 (file)
@@ -197,7 +197,7 @@ public:
    * @brief share the resources
    * @details Share the resources between the actions 
    * 
-   * @param 
+   * @param now [TODO]
    * @return the date of the next action will finish
    */
   virtual double shareResources(double now);
@@ -360,15 +360,13 @@ public:
    */
   virtual void setState(e_surf_resource_state_t state);
 
-protected:
-  e_surf_resource_state_t m_stateCurrent;
-
 private:
   const char *p_name;
   xbt_dict_t p_properties;
   ModelPtr p_model;
   void *p_resource;
   bool m_running;
+  e_surf_resource_state_t m_stateCurrent;
 
   /* LMM */
 public:
@@ -439,14 +437,7 @@ public:
    * 
    * @param state The new state of the current Action
    */
-  virtual void setState(e_surf_action_state_t state); /**< Change state*/
-
-  /**
-   * @brief Get the bound of the current Action
-   * 
-   * @return The bound of the current Action
-   */
-  double getBound() {return m_bound;}
+  virtual void setState(e_surf_action_state_t state);
 
   /**
    * @brief Get the start time of the current action
@@ -681,7 +672,6 @@ private:
   ActionLmmListPtr p_modifiedSet;
   xbt_heap_t p_actionHeap;
   int m_selectiveUpdate;
-  double m_bound;   /**< the capping of the CPU use  */
   bool m_failed;
   double m_start; /**< start time  */
   char *p_category;               /**< tracing category for categorized resource utilization monitoring */