本文整理汇总了C++中xen_reboot函数的典型用法代码示例。如果您正苦于以下问题:C++ xen_reboot函数的具体用法?C++ xen_reboot怎么用?C++ xen_reboot使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了xen_reboot函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: xen_crash_shutdown
static void xen_crash_shutdown(struct pt_regs *regs)
{
xen_reboot(SHUTDOWN_crash);
}
示例2: xen_machine_halt
static void xen_machine_halt(void)
{
xen_reboot(SHUTDOWN_poweroff);
}
示例3: xen_machine_power_off
static void xen_machine_power_off(void)
{
if (pm_power_off)
pm_power_off();
xen_reboot(SHUTDOWN_poweroff);
}
示例4: xen_hvm_crash_shutdown
static void xen_hvm_crash_shutdown(struct pt_regs *regs)
{
native_machine_crash_shutdown(regs);
xen_reboot(SHUTDOWN_soft_reset);
}
示例5: xen_hvm_shutdown
static void xen_hvm_shutdown(void)
{
native_machine_shutdown();
if (kexec_in_progress)
xen_reboot(SHUTDOWN_soft_reset);
}