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 616B

1234567891011121314151617181920212223242526272829
  1. #ifndef _IPXE_EFI_PROCESSOR_BIND_H
  2. #define _IPXE_EFI_PROCESSOR_BIND_H
  3. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  4. /*
  5. * EFI header files rely on having the CPU architecture directory
  6. * present in the search path in order to pick up ProcessorBind.h. We
  7. * use this header file as a quick indirection layer.
  8. * - mcb30
  9. */
  10. #if __i386__
  11. #include <ipxe/efi/Ia32/ProcessorBind.h>
  12. #endif
  13. #if __x86_64__
  14. #include <ipxe/efi/X64/ProcessorBind.h>
  15. #endif
  16. #if __arm__
  17. #include <ipxe/efi/Arm/ProcessorBind.h>
  18. #endif
  19. #if __aarch64__
  20. #include <ipxe/efi/AArch64/ProcessorBind.h>
  21. #endif
  22. #endif /* _IPXE_EFI_PROCESSOR_BIND_H */