From ea5ebe0809fb31b9f125ac0689f706cc5f3f078f Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 30 Apr 2023 17:06:02 +0300 Subject: rename to kmi --- include/apos/power.h | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 include/apos/power.h (limited to 'include/apos/power.h') diff --git a/include/apos/power.h b/include/apos/power.h deleted file mode 100644 index b239d5b..0000000 --- a/include/apos/power.h +++ /dev/null @@ -1,38 +0,0 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ -/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ - -#ifndef APOS_POWER_H -#define APOS_POWER_H - -/** - * @file power.h - * Power subsystem. Will hopefully eventually be used to restart and shutdown - * host machines. - */ - -#include -#include - -/** Types of powering off. Still unclear what difference there is between warm - * and cold reboot. */ -enum poweroff_type { - /** Shut down. */ - SHUTDOWN, - - /** Cold or complete reboot. */ - COLD_REBOOT, - - /** Warm or partial reboot. */ - WARM_REBOOT -}; - -/** - * Power off the system. - * - * @param type Type of powering off. \see poweroff_type. - * @return Nothing on success (system shuts down), \ref ERR_INVAL on invalid - * poweroff type or ERR_MISC if studown was not succesful. - */ -stat_t poweroff(enum poweroff_type type); - -#endif -- cgit v1.3