mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-14 19:25:53 +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.
21 lines
343 B
C
21 lines
343 B
C
/* atm_he.h */
|
|
|
|
#ifndef LINUX_ATM_HE_H
|
|
#define LINUX_ATM_HE_H
|
|
|
|
#include <linux/atmioc.h>
|
|
|
|
#define HE_GET_REG _IOW('a', ATMIOC_SARPRV, struct atmif_sioc)
|
|
|
|
#define HE_REGTYPE_PCI 1
|
|
#define HE_REGTYPE_RCM 2
|
|
#define HE_REGTYPE_TCM 3
|
|
#define HE_REGTYPE_MBOX 4
|
|
|
|
struct he_ioctl_reg {
|
|
unsigned addr, val;
|
|
char type;
|
|
};
|
|
|
|
#endif /* LINUX_ATM_HE_H */
|