Home | History | Annotate | Line # | Download | only in include
sysarch.h revision 1.1
      1 /*
      2  * Architecture specific syscalls (i386)
      3  */
      4 #define I386_GET_LDT	0
      5 #define I386_SET_LDT	1
      6 
      7 #ifndef KERNEL
      8 int i386_get_ldt __P((int, union descriptor *, int));
      9 int i386_set_ldt __P((int, union descriptor *, int));
     10 #endif
     11