TianoCore EDK2 master
Loading...
Searching...
No Matches
MpInformation.h
Go to the documentation of this file.
1
13#ifndef _MP_INFORMATION_H_
14#define _MP_INFORMATION_H_
15
16#include <Protocol/MpService.h>
17#include <PiPei.h>
19
20#define MP_INFORMATION_GUID \
21 { \
22 0xba33f15d, 0x4000, 0x45c1, {0x8e, 0x88, 0xf9, 0x16, 0x92, 0xd4, 0x57, 0xe3} \
23 }
24
25#pragma pack(1)
26typedef struct {
27 UINT64 NumberOfProcessors;
28 UINT64 NumberOfEnabledProcessors;
29 EFI_PROCESSOR_INFORMATION ProcessorInfoBuffer[];
31#pragma pack()
32
33extern EFI_GUID gMpInformationHobGuid;
34
35#endif
Definition: Base.h:213