~ubuntu-branches/ubuntu/trusty/emscripten/trusty-proposed

« back to all changes in this revision

Viewing changes to system/include/libc/sys/personality.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2014-01-19 14:12:40 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140119141240-jg1l42cc158j59tn
Tags: 1.9.0~20140119~7dc8c2f-1
* New snapshot release (Closes: #733714)
* Provide sources for javascript and flash. Done in orig-tar.sh
  Available in third_party/websockify/include/web-socket-js/src/
  (Closes: #735903)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _PERSONALITY_H
 
2
#define _PERSONALITY_H
 
3
 
 
4
#ifdef __cplusplus
 
5
extern "C" {
 
6
#endif
 
7
 
 
8
#define ADDR_NO_RANDOMIZE  0x0040000
 
9
#define MMAP_PAGE_ZERO     0x0100000
 
10
#define ADDR_COMPAT_LAYOUT 0x0200000
 
11
#define READ_IMPLIES_EXEC  0x0400000
 
12
#define ADDR_LIMIT_32BIT   0x0800000
 
13
#define SHORT_INODE        0x1000000
 
14
#define WHOLE_SECONDS      0x2000000
 
15
#define STICKY_TIMEOUTS    0x4000000
 
16
#define ADDR_LIMIT_3GB     0x8000000
 
17
 
 
18
#define PER_LINUX 0
 
19
#define PER_LINUX_32BIT ADDR_LIMIT_32BIT
 
20
#define PER_SVR4 (1 | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
 
21
#define PER_SVR3 (2 | STICKY_TIMEOUTS | SHORT_INODE)
 
22
#define PER_SCOSVR3 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS | SHORT_INODE)
 
23
#define PER_OSR5 (3 | STICKY_TIMEOUTS | WHOLE_SECONDS)
 
24
#define PER_WYSEV386 (4 | STICKY_TIMEOUTS | SHORT_INODE)
 
25
#define PER_ISCR4 (5 | STICKY_TIMEOUTS)
 
26
#define PER_BSD 6
 
27
#define PER_SUNOS (6 | STICKY_TIMEOUTS)
 
28
#define PER_XENIX (7 | STICKY_TIMEOUTS | SHORT_INODE)
 
29
#define PER_LINUX32 8
 
30
#define PER_LINUX32_3GB (8 | ADDR_LIMIT_3GB)
 
31
#define PER_IRIX32 (9 | STICKY_TIMEOUTS)
 
32
#define PER_IRIXN32 (0xa | STICKY_TIMEOUTS)
 
33
#define PER_IRIX64 (0x0b | STICKY_TIMEOUTS)
 
34
#define PER_RISCOS 0xc
 
35
#define PER_SOLARIS (0xd | STICKY_TIMEOUTS)
 
36
#define PER_UW7 (0xe | STICKY_TIMEOUTS | MMAP_PAGE_ZERO)
 
37
#define PER_OSF4 0xf
 
38
#define PER_HPUX 0x10
 
39
#define PER_MASK 0xff
 
40
 
 
41
int personality(unsigned long);
 
42
 
 
43
#ifdef __cplusplus
 
44
}
 
45
#endif
 
46
#endif