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 UNAME26            0x0020000
9570af302Sopenharmony_ci#define ADDR_NO_RANDOMIZE  0x0040000
10570af302Sopenharmony_ci#define FDPIC_FUNCPTRS     0x0080000
11570af302Sopenharmony_ci#define MMAP_PAGE_ZERO     0x0100000
12570af302Sopenharmony_ci#define ADDR_COMPAT_LAYOUT 0x0200000
13570af302Sopenharmony_ci#define READ_IMPLIES_EXEC  0x0400000
14570af302Sopenharmony_ci#define ADDR_LIMIT_32BIT   0x0800000
15570af302Sopenharmony_ci#define SHORT_INODE        0x1000000
16570af302Sopenharmony_ci#define WHOLE_SECONDS      0x2000000
17570af302Sopenharmony_ci#define STICKY_TIMEOUTS    0x4000000
18570af302Sopenharmony_ci#define ADDR_LIMIT_3GB     0x8000000
19570af302Sopenharmony_ci
20570af302Sopenharmony_ci#define PER_LINUX 0
21570af302Sopenharmony_ci#define PER_LINUX_32BIT ADDR_LIMIT_32BIT
22570af302Sopenharmony_ci#define PER_LINUX_FDPIC FDPIC_FUNCPTRS
23570af302Sopenharmony_ci#define PER_SVR4 (1 | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
24570af302Sopenharmony_ci#define PER_SVR3 (2 | STICKY_TIMEOUTS | SHORT_INODE)
25570af302Sopenharmony_ci#define PER_SCOSVR3 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS | SHORT_INODE)
26570af302Sopenharmony_ci#define PER_OSR5 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS)
27570af302Sopenharmony_ci#define PER_WYSEV386 (4 | STICKY_TIMEOUTS | SHORT_INODE)
28570af302Sopenharmony_ci#define PER_ISCR4 (5 | STICKY_TIMEOUTS)
29570af302Sopenharmony_ci#define PER_BSD 6
30570af302Sopenharmony_ci#define PER_SUNOS (6 | STICKY_TIMEOUTS)
31570af302Sopenharmony_ci#define PER_XENIX (7 | STICKY_TIMEOUTS | SHORT_INODE)
32570af302Sopenharmony_ci#define PER_LINUX32 8
33570af302Sopenharmony_ci#define PER_LINUX32_3GB (8 | ADDR_LIMIT_3GB)
34570af302Sopenharmony_ci#define PER_IRIX32 (9 | STICKY_TIMEOUTS)
35570af302Sopenharmony_ci#define PER_IRIXN32 (0xa | STICKY_TIMEOUTS)
36570af302Sopenharmony_ci#define PER_IRIX64 (0x0b | STICKY_TIMEOUTS)
37570af302Sopenharmony_ci#define PER_RISCOS 0xc
38570af302Sopenharmony_ci#define PER_SOLARIS (0xd | STICKY_TIMEOUTS)
39570af302Sopenharmony_ci#define PER_UW7 (0xe | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
40570af302Sopenharmony_ci#define PER_OSF4 0xf
41570af302Sopenharmony_ci#define PER_HPUX 0x10
42570af302Sopenharmony_ci#define PER_MASK 0xff
43570af302Sopenharmony_ci
44570af302Sopenharmony_ciint personality(unsigned long);
45570af302Sopenharmony_ci
46570af302Sopenharmony_ci#ifdef __cplusplus
47570af302Sopenharmony_ci}
48570af302Sopenharmony_ci#endif
49570af302Sopenharmony_ci#endif
50