mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 10:15:54 +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.
18 lines
315 B
C
18 lines
315 B
C
#ifndef __A_OUT_GNU_H__
|
|
#define __A_OUT_GNU_H__
|
|
|
|
#include <uapi/linux/a.out.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
#ifdef linux
|
|
#include <asm/page.h>
|
|
#if defined(__i386__) || defined(__mc68000__)
|
|
#else
|
|
#ifndef SEGMENT_SIZE
|
|
#define SEGMENT_SIZE PAGE_SIZE
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif /*__ASSEMBLY__ */
|
|
#endif /* __A_OUT_GNU_H__ */
|