mirror of https://github.com/acidanthera/audk.git
MdePkg: Move duplicate EFI_AP_PROCEDURE typedef to a common location
EFI_AP_PROCEDURE was defined equivalently in two locations: 1. MdePkg/Include/Pi/PiSmmCis.h 2. MdePkg/Include/Protocol/MpService.h This change moves the definition to a common file: * MdePkg/Include/Pi/PiDxeCis.h git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9470 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
1e4506f2cc
commit
a32c6dcf3e
|
@ -695,4 +695,19 @@ typedef struct {
|
||||||
|
|
||||||
typedef DXE_SERVICES EFI_DXE_SERVICES;
|
typedef DXE_SERVICES EFI_DXE_SERVICES;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Function prototype for invoking a function on an Application Processor.
|
||||||
|
|
||||||
|
This definition is used by the UEFI MP Serices Protocol, and the
|
||||||
|
PI SMM System Table.
|
||||||
|
|
||||||
|
@param[in,out] Buffer Pointer to private data buffer.
|
||||||
|
**/
|
||||||
|
typedef
|
||||||
|
VOID
|
||||||
|
(EFIAPI *EFI_AP_PROCEDURE)(
|
||||||
|
IN OUT VOID *Buffer
|
||||||
|
);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -67,17 +67,6 @@ EFI_STATUS
|
||||||
IN UINTN TableSize
|
IN UINTN TableSize
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
Function prototype for invoking a function on an Application Processor.
|
|
||||||
|
|
||||||
@param[in,out] Buffer Pointer to private data buffer.
|
|
||||||
**/
|
|
||||||
typedef
|
|
||||||
VOID
|
|
||||||
(EFIAPI *EFI_AP_PROCEDURE)(
|
|
||||||
IN OUT VOID *Buffer
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The SmmStartupThisAp() lets the caller to get one distinct application processor
|
The SmmStartupThisAp() lets the caller to get one distinct application processor
|
||||||
(AP) in the enabled processor pool to execute a caller-provided code stream
|
(AP) in the enabled processor pool to execute a caller-provided code stream
|
||||||
|
|
|
@ -140,20 +140,6 @@ typedef struct {
|
||||||
EFI_CPU_PHYSICAL_LOCATION Location;
|
EFI_CPU_PHYSICAL_LOCATION Location;
|
||||||
} EFI_PROCESSOR_INFORMATION;
|
} EFI_PROCESSOR_INFORMATION;
|
||||||
|
|
||||||
/**
|
|
||||||
Functions of this type are passed into StartUpAllAPs() and StartThisAP() to
|
|
||||||
execute a procedure on enabled APs. The context the AP should use durng
|
|
||||||
execution is specified by ProcedureArgument.
|
|
||||||
|
|
||||||
@param[in] ProcedureArgument Pointer to the procedure's argument.
|
|
||||||
|
|
||||||
**/
|
|
||||||
typedef
|
|
||||||
VOID
|
|
||||||
(EFIAPI *EFI_AP_PROCEDURE)(
|
|
||||||
IN VOID *ProcedureArgument
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This service retrieves the number of logical processor in the platform
|
This service retrieves the number of logical processor in the platform
|
||||||
and the number of those logical processors that are enabled on this boot.
|
and the number of those logical processors that are enabled on this boot.
|
||||||
|
|
Loading…
Reference in New Issue