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