mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 20:15:08 +00:00

We move QEMU and VirtualBox shutdown sequences to a separate file, as well as moving the i8042 reboot code sequence too to another file. This allows us to abstract specific methods from the power state node code of the SysFS filesystem, to allow other architectures to put their methods there too in the future.
14 lines
194 B
C++
14 lines
194 B
C++
/*
|
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
|
|
void qemu_shutdown();
|
|
void virtualbox_shutdown();
|
|
|
|
}
|