diff options
Diffstat (limited to 'src/arch/arm.h')
-rw-r--r-- | src/arch/arm.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/arch/arm.h b/src/arch/arm.h new file mode 100644 index 000000000..dacc450b1 --- /dev/null +++ b/src/arch/arm.h @@ -0,0 +1,18 @@ +#ifndef CEPH_ARCH_ARM_H +#define CEPH_ARCH_ARM_H + +#ifdef __cplusplus +extern "C" { +#endif + +extern int ceph_arch_neon; /* true if we have ARM NEON or ASIMD abilities */ +extern int ceph_arch_aarch64_crc32; /* true if we have AArch64 CRC32/CRC32C abilities */ +extern int ceph_arch_aarch64_pmull; /* true if we have AArch64 PMULL abilities */ + +extern int ceph_arch_arm_probe(void); + +#ifdef __cplusplus +} +#endif + +#endif |