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.

ProcessorBind.h 335B

1234567891011121314
  1. /*
  2. * EFI header files rely on having the CPU architecture directory
  3. * present in the search path in order to pick up ProcessorBind.h. We
  4. * use this header file as a quick indirection layer.
  5. * - mcb30
  6. */
  7. #if __i386__
  8. #include <gpxe/efi/Ia32/ProcessorBind.h>
  9. #endif
  10. #if __x86_64__
  11. #include <gpxe/efi/X64/ProcessorBind.h>
  12. #endif