24 lines
562 B
C
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 */
|