server: Allow 32-bit connections on ARM64.
This commit is contained in:
parent
e5bc217e05
commit
6adcad498c
|
@ -107,7 +107,7 @@ struct process_snapshot
|
||||||
};
|
};
|
||||||
|
|
||||||
#define CPU_FLAG(cpu) (1 << (cpu))
|
#define CPU_FLAG(cpu) (1 << (cpu))
|
||||||
#define CPU_64BIT_MASK CPU_FLAG(CPU_x86_64)
|
#define CPU_64BIT_MASK (CPU_FLAG(CPU_x86_64) | CPU_FLAG(CPU_ARM64))
|
||||||
|
|
||||||
/* process functions */
|
/* process functions */
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ static const unsigned int supported_cpus = CPU_FLAG(CPU_POWERPC);
|
||||||
#elif defined(__arm__)
|
#elif defined(__arm__)
|
||||||
static const unsigned int supported_cpus = CPU_FLAG(CPU_ARM);
|
static const unsigned int supported_cpus = CPU_FLAG(CPU_ARM);
|
||||||
#elif defined(__aarch64__)
|
#elif defined(__aarch64__)
|
||||||
static const unsigned int supported_cpus = CPU_FLAG(CPU_ARM64);
|
static const unsigned int supported_cpus = CPU_FLAG(CPU_ARM64) | CPU_FLAG(CPU_ARM);
|
||||||
#else
|
#else
|
||||||
#error Unsupported CPU
|
#error Unsupported CPU
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue