exectos/xtoskrnl/includes/popfuncs.h
belliash e81fb68357
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Initial support processor idle functionality
2023-03-02 16:25:41 +01:00

24 lines
562 B
C

/**
* 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 */