hwcap.h 339 B

12345678910111213141516
  1. #ifndef __ASMARM_HWCAP_H
  2. #define __ASMARM_HWCAP_H
  3. #include <uapi/asm/hwcap.h>
  4. #if !defined(__ASSEMBLY__)
  5. /*
  6. * This yields a mask that user programs can use to figure out what
  7. * instruction set this cpu supports.
  8. */
  9. #define ELF_HWCAP (elf_hwcap)
  10. #define ELF_HWCAP2 (elf_hwcap2)
  11. extern unsigned int elf_hwcap, elf_hwcap2;
  12. #endif
  13. #endif