コード例 #1
0
ファイル: s4u_host.cpp プロジェクト: apargupta/simgrid
void Host::turnOn() {
	simcall_host_on(p_inferior);
}
コード例 #2
0
ファイル: msg_host.c プロジェクト: tempbottle/simgrid
/** \ingroup m_host_management
 *
 * \brief Start the host if it is off
 *
 * 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_on(msg_host_t host)
{
  simcall_host_on(host);
}