root/include/linux/personality.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /* Flags for bug emulation. These occupy the top three bytes. */
   2 #define STICKY_TIMEOUTS         0x8000000
   3 #define WHOLE_SECONDS           0x4000000
   4 
   5 /* Personality types. These go in the low byte. */
   6 #define PER_MASK                (0x00ff)
   7 #define PER_LINUX               (0x0000)
   8 #define PER_SVR4                (0x0001 | STICKY_TIMEOUTS)
   9 #define PER_SVR3                (0x0002 | STICKY_TIMEOUTS)
  10 #define PER_SCOSVR3             (0x0003 | STICKY_TIMEOUTS | WHOLE_SECONDS)
  11 #define PER_WYSEV386            (0x0004 | STICKY_TIMEOUTS)
  12 #define PER_ISCR4               (0x0005 | STICKY_TIMEOUTS)

/* [previous][next][first][last][top][bottom][index][help] */