コード例 #1
0
ファイル: s4u_host.cpp プロジェクト: apargupta/simgrid
void Host::turnOff() {
	simcall_host_off(p_inferior);
}
コード例 #2
0
ファイル: msg_host.c プロジェクト: tempbottle/simgrid
/** \ingroup m_host_management
 *
 * \brief Stop the host if it is on
 *
 * See also #MSG_host_is_on() and #MSG_host_is_off() to test the current state of the host and @ref SURF_plugin_energy for more info on DVFS.
 */
void MSG_host_off(msg_host_t host)
{
  simcall_host_off(host);
}