ApicId.h 517 B

1234567891011121314151617181920212223
  1. /** @file
  2. Type and macro definitions for representing and printing APIC IDs, compatibly
  3. with the LocalApicLib and PrintLib classes, respectively.
  4. Copyright (c) 2020, Red Hat, Inc.
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #ifndef APIC_ID_H_
  8. #define APIC_ID_H_
  9. //
  10. // The type that LocalApicLib represents an APIC ID with.
  11. //
  12. typedef UINT32 APIC_ID;
  13. //
  14. // The PrintLib conversion specification for formatting an APIC_ID.
  15. //
  16. #define FMT_APIC_ID "0x%08x"
  17. #endif // APIC_ID_H_