1570af302Sopenharmony_ci#ifndef _PERSONALITY_H
2570af302Sopenharmony_ci#define _PERSONALITY_H
3570af302Sopenharmony_ci
4570af302Sopenharmony_ci#ifdef __cplusplus
5570af302Sopenharmony_ciextern "C" {
6570af302Sopenharmony_ci#endif
7570af302Sopenharmony_ci
8570af302Sopenharmony_ci#define ADDR_NO_RANDOMIZE  0x0040000
9570af302Sopenharmony_ci#define MMAP_PAGE_ZERO     0x0100000
10570af302Sopenharmony_ci#define ADDR_COMPAT_LAYOUT 0x0200000
11570af302Sopenharmony_ci#define READ_IMPLIES_EXEC  0x0400000
12570af302Sopenharmony_ci#define ADDR_LIMIT_32BIT   0x0800000
13570af302Sopenharmony_ci#define SHORT_INODE        0x1000000
14570af302Sopenharmony_ci#define WHOLE_SECONDS      0x2000000
15570af302Sopenharmony_ci#define STICKY_TIMEOUTS    0x4000000
16570af302Sopenharmony_ci#define ADDR_LIMIT_3GB     0x8000000
17570af302Sopenharmony_ci
18570af302Sopenharmony_ci#define PER_LINUX 0
19570af302Sopenharmony_ci#define PER_LINUX_32BIT ADDR_LIMIT_32BIT
20570af302Sopenharmony_ci#define PER_SVR4 (1 | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
21570af302Sopenharmony_ci#define PER_SVR3 (2 | STICKY_TIMEOUTS | SHORT_INODE)
22570af302Sopenharmony_ci#define PER_SCOSVR3 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS | SHORT_INODE)
23570af302Sopenharmony_ci#define PER_OSR5 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS)
24570af302Sopenharmony_ci#define PER_WYSEV386 (4 | STICKY_TIMEOUTS | SHORT_INODE)
25570af302Sopenharmony_ci#define PER_ISCR4 (5 | STICKY_TIMEOUTS)
26570af302Sopenharmony_ci#define PER_BSD 6
27570af302Sopenharmony_ci#define PER_SUNOS (6 | STICKY_TIMEOUTS)
28570af302Sopenharmony_ci#define PER_XENIX (7 | STICKY_TIMEOUTS | SHORT_INODE)
29570af302Sopenharmony_ci#define PER_LINUX32 8
30570af302Sopenharmony_ci#define PER_LINUX32_3GB (8 | ADDR_LIMIT_3GB)
31570af302Sopenharmony_ci#define PER_IRIX32 (9 | STICKY_TIMEOUTS)
32570af302Sopenharmony_ci#define PER_IRIXN32 (0xa | STICKY_TIMEOUTS)
33570af302Sopenharmony_ci#define PER_IRIX64 (0x0b | STICKY_TIMEOUTS)
34570af302Sopenharmony_ci#define PER_RISCOS 0xc
35570af302Sopenharmony_ci#define PER_SOLARIS (0xd | STICKY_TIMEOUTS)
36570af302Sopenharmony_ci#define PER_UW7 (0xe | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
37570af302Sopenharmony_ci#define PER_OSF4 0xf
38570af302Sopenharmony_ci#define PER_HPUX 0x10
39570af302Sopenharmony_ci#define PER_MASK 0xff
40570af302Sopenharmony_ci
41570af302Sopenharmony_ciint personality(unsigned long);
42570af302Sopenharmony_ci
43570af302Sopenharmony_ci#ifdef __cplusplus
44570af302Sopenharmony_ci}
45570af302Sopenharmony_ci#endif
46570af302Sopenharmony_ci#endif
47