XBT_PUBLIC(double) MSG_host_get_wattmin_at(msg_host_t host, int pstate);
XBT_PUBLIC(double) MSG_host_get_wattmax_at(msg_host_t host, int pstate);
-XBT_PUBLIC(void) __MSG_host_destroy(msg_host_t host);
-
XBT_PUBLIC(double) MSG_host_get_power_peak_at(msg_host_t h, int pstate);
XBT_PUBLIC(double) MSG_host_get_current_power_peak(msg_host_t h);
XBT_PUBLIC(int) MSG_host_get_nb_pstates(msg_host_t h);
free(priv);
}
-/*
- * \brief Destroys a host (internal call only)
- */
-void __MSG_host_destroy(msg_host_t host) //FIXME: killme?
-{
- /* TODO:
- * What happens if VMs still remain on this host?
- * Revisit here after the surf layer gets stable.
- **/
- sg_host_msg_destroy(host);
-}
-
/** \ingroup m_host_management
* \brief Return the current number MSG hosts.
*/
XBT_PRIVATE msg_host_t __MSG_host_create(sg_host_t host);
XBT_PRIVATE msg_storage_t __MSG_storage_create(smx_storage_t storage);
-void __MSG_host_destroy(msg_host_t host);
XBT_PRIVATE void __MSG_host_priv_free(msg_host_priv_t priv);
XBT_PRIVATE void __MSG_storage_destroy(msg_storage_priv_t host);
XBT_PRIVATE void __MSG_file_destroy(msg_file_priv_t host);
/* Then, destroy the VM object */
simcall_vm_destroy(vm);
- __MSG_host_destroy(vm);
-
TRACE_msg_vm_end(vm);
}