patch-2.0.34 linux/include/linux/personality.h
Next file: linux/include/linux/smbno.h
Previous file: linux/include/linux/pci.h
Back to the patch index
Back to the overall index
- Lines: 17
- Date:
Wed Jun 3 15:17:49 1998
- Orig file:
v2.0.33/linux/include/linux/personality.h
- Orig date:
Tue Aug 20 23:18:10 1996
diff -u --recursive --new-file v2.0.33/linux/include/linux/personality.h linux/include/linux/personality.h
@@ -8,12 +8,16 @@
/* Flags for bug emulation. These occupy the top three bytes. */
#define STICKY_TIMEOUTS 0x4000000
#define WHOLE_SECONDS 0x2000000
+#define ADDR_MAX_32BIT 0x1000000
+#define ADDR_MAX_31BIT 0x0800000
/* Personality types. These go in the low byte. Avoid using the top bit,
* it will conflict with error returns.
*/
#define PER_MASK (0x00ff)
#define PER_LINUX (0x0000)
+#define PER_LINUX_32BIT (PER_LINUX | ADDR_MAX_32BIT)
+#define PER_LINUX_EM86 (PER_LINUX | ADDR_MAX_31BIT)
#define PER_SVR4 (0x0001 | STICKY_TIMEOUTS)
#define PER_SVR3 (0x0002 | STICKY_TIMEOUTS)
#define PER_SCOSVR3 (0x0003 | STICKY_TIMEOUTS | WHOLE_SECONDS)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov