You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
956 B
55 lines
956 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
processor.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the enumerated for the ACPI driver, NT version
|
|
|
|
Author:
|
|
|
|
Stephane Plante (splante)
|
|
|
|
Environment:
|
|
|
|
NT Kernel Model Driver only
|
|
|
|
--*/
|
|
|
|
#ifndef _PROCESSOR_H_
|
|
#define _PROCESSOR_H_
|
|
|
|
extern KSPIN_LOCK AcpiProcessorLock;
|
|
extern LIST_ENTRY AcpiProcessorList;
|
|
//extern PDEVICE_OBJECT FixedProcessorDeviceObject;
|
|
|
|
VOID
|
|
ACPIProcessorCancelRequest(
|
|
IN PDEVICE_OBJECT DeviceObject,
|
|
IN PIRP Irp
|
|
);
|
|
|
|
BOOLEAN
|
|
ACPIProcessorCompletePendingIrps(
|
|
IN PDEVICE_OBJECT DeviceObject,
|
|
IN ULONG ProcessorEvent
|
|
);
|
|
|
|
|
|
NTSTATUS
|
|
ACPIProcessorDeviceControl (
|
|
IN PDEVICE_OBJECT DeviceObject,
|
|
IN PIRP Irp
|
|
);
|
|
|
|
NTSTATUS
|
|
ACPIProcessorStartDevice (
|
|
IN PDEVICE_OBJECT DeviceObject,
|
|
IN PIRP Irp
|
|
);
|
|
|
|
#endif
|