diff options
author | rofl0r <retnyg@gmx.net> | 2013-08-08 20:34:40 +0200 |
---|---|---|
committer | rofl0r <retnyg@gmx.net> | 2013-08-08 20:39:54 +0200 |
commit | 6a0aa82f5161431bc93e1e83065afc9b8c175fc4 (patch) | |
tree | 371a140f64d604010e769acbeef0e8d1a8a9cf35 /include/sys/personality.h | |
parent | 19b4a0a20efc6b9df98b6a43536ecdd628ba4643 (diff) | |
download | musl-6a0aa82f5161431bc93e1e83065afc9b8c175fc4.tar.gz musl-6a0aa82f5161431bc93e1e83065afc9b8c175fc4.tar.xz musl-6a0aa82f5161431bc93e1e83065afc9b8c175fc4.zip |
sys/personality.h: add missing macros
Diffstat (limited to 'include/sys/personality.h')
-rw-r--r-- | include/sys/personality.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/sys/personality.h b/include/sys/personality.h index 852c0248..68eb00ca 100644 --- a/include/sys/personality.h +++ b/include/sys/personality.h @@ -1,6 +1,39 @@ #ifndef _PERSONALITY_H #define _PERSONALITY_H +#define ADDR_NO_RANDOMIZE 0x0040000 +#define MMAP_PAGE_ZERO 0x0100000 +#define ADDR_COMPAT_LAYOUT 0x0200000 +#define READ_IMPLIES_EXEC 0x0400000 +#define ADDR_LIMIT_32BIT 0x0800000 +#define SHORT_INODE 0x1000000 +#define WHOLE_SECONDS 0x2000000 +#define STICKY_TIMEOUTS 0x4000000 +#define ADDR_LIMIT_3GB 0x8000000 + +#define PER_LINUX 0 +#define PER_LINUX_32BIT ADDR_LIMIT_32BIT +#define PER_SVR4 (1 | STICKY_TIMEOUTS | MMAP_PAGE_ZERO) +#define PER_SVR3 (2 | STICKY_TIMEOUTS | SHORT_INODE) +#define PER_SCOSVR3 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS | SHORT_INODE) +#define PER_OSR5 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS) +#define PER_WYSEV386 (4 | STICKY_TIMEOUTS | SHORT_INODE) +#define PER_ISCR4 (5 | STICKY_TIMEOUTS) +#define PER_BSD 6 +#define PER_SUNOS (6 | STICKY_TIMEOUTS) +#define PER_XENIX (7 | STICKY_TIMEOUTS | SHORT_INODE) +#define PER_LINUX32 8 +#define PER_LINUX32_3GB (8 | ADDR_LIMIT_3GB) +#define PER_IRIX32 (9 | STICKY_TIMEOUTS) +#define PER_IRIXN32 (0xa | STICKY_TIMEOUTS) +#define PER_IRIX64 (0x0b | STICKY_TIMEOUTS) +#define PER_RISCOS 0xc +#define PER_SOLARIS (0xd | STICKY_TIMEOUTS) +#define PER_UW7 (0xe | STICKY_TIMEOUTS | MMAP_PAGE_ZERO) +#define PER_OSF4 0xf +#define PER_HPUX 0x10 +#define PER_MASK 0xff + int personality(unsigned long); #endif |