mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 14:54:17 +00:00
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
22 lines
658 B
C
22 lines
658 B
C
#ifndef __XEN_PROTOCOLS_H__
|
|
#define __XEN_PROTOCOLS_H__
|
|
|
|
#define XEN_IO_PROTO_ABI_X86_32 "x86_32-abi"
|
|
#define XEN_IO_PROTO_ABI_X86_64 "x86_64-abi"
|
|
#define XEN_IO_PROTO_ABI_POWERPC64 "powerpc64-abi"
|
|
#define XEN_IO_PROTO_ABI_ARM "arm-abi"
|
|
|
|
#if defined(__i386__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32
|
|
#elif defined(__x86_64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64
|
|
#elif defined(__powerpc64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_POWERPC64
|
|
#elif defined(__arm__) || defined(__aarch64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_ARM
|
|
#else
|
|
# error arch fixup needed here
|
|
#endif
|
|
|
|
#endif
|