1 #ifndef _I386_SYSARCH_H_ 2 #define _I386_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 /* !_I386_SYSARCH_H_ */ 16