Initial support processor idle functionality

This commit is contained in:
2023-03-02 16:25:41 +01:00
parent 870a6680b0
commit e81fb68357
5 changed files with 76 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/popfuncs.h
* DESCRIPTION: Private routine definitions for kernel power manager
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_POPFUNCS_H
#define __XTOSKRNL_POPFUNCS_H
#include <xtos.h>
XTAPI
VOID
PoInitializeProcessorControlBlock(IN OUT PKPROCESSOR_CONTROL_BLOCK Prcb);
XTFASTCALL
VOID
PopIdle0Function(IN PPROCESSOR_POWER_STATE PowerState);
#endif /* __XTOSKRNL_POPFUNCS_H */