Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do the Right Thing for the host_(get/set)_pstate
[simgrid.git] / src / simix / libsmx.cpp
index 18ff330..4f1d8cd 100644 (file)
@@ -42,13 +42,6 @@ void simcall_call(smx_process_t process)
 // ***** Host simcalls
 // Those functions are replaced by methods on the Host object.
 
-/** \ingroup simix_host_management
- * \deprecated */
-xbt_dict_t simcall_host_get_properties(sg_host_t host)
-{
-  return host->getProperties();
-}
-
 /** \ingroup simix_host_management
  * \deprecated */
 xbt_swag_t simcall_host_get_process_list(sg_host_t host)
@@ -70,13 +63,6 @@ double simcall_host_get_power_peak_at(sg_host_t host, int pstate_index)
   return host->getPowerPeakAt(pstate_index);
 }
 
-/** \ingroup simix_host_management
- * \deprecated */
-void simcall_host_set_pstate(sg_host_t host, int pstate_index)
-{
-  host->setPstate(pstate_index);
-}
-
 /** \ingroup simix_host_management
  * \deprecated */
 double simcall_host_get_wattmin_at(msg_host_t host, int pstate)