xv6

port of xv6 to x86-64
git clone http://frotz.net/git/xv6.git
Log | Files | Refs | README | LICENSE

types.h (253B)


      1 typedef unsigned int   uint;
      2 typedef unsigned short ushort;
      3 typedef unsigned char  uchar;
      4 
      5 typedef unsigned int  uint32;
      6 typedef unsigned long uint64;
      7 
      8 #if X64
      9 typedef unsigned long uintp;
     10 #else
     11 typedef unsigned int  uintp;
     12 #endif
     13 
     14 typedef uintp pde_t;