Home | History | Annotate | Line # | Download | only in include
sysarch.h revision 1.6
      1  1.6       pk /*	$NetBSD: sysarch.h,v 1.6 1995/06/05 19:36:23 pk Exp $	*/
      2  1.3      cgd 
      3  1.2  mycroft #ifndef _I386_SYSARCH_H_
      4  1.2  mycroft #define _I386_SYSARCH_H_
      5  1.2  mycroft 
      6  1.1   brezak /*
      7  1.1   brezak  * Architecture specific syscalls (i386)
      8  1.1   brezak  */
      9  1.1   brezak #define I386_GET_LDT	0
     10  1.1   brezak #define I386_SET_LDT	1
     11  1.5  mycroft 
     12  1.5  mycroft struct i386_get_ldt_args {
     13  1.5  mycroft 	int start;
     14  1.5  mycroft 	union descriptor *desc;
     15  1.5  mycroft 	int num;
     16  1.5  mycroft };
     17  1.5  mycroft 
     18  1.5  mycroft struct i386_set_ldt_args {
     19  1.5  mycroft 	int start;
     20  1.5  mycroft 	union descriptor *desc;
     21  1.5  mycroft 	int num;
     22  1.5  mycroft };
     23  1.1   brezak 
     24  1.4      jtc #ifndef _KERNEL
     25  1.1   brezak int i386_get_ldt __P((int, union descriptor *, int));
     26  1.1   brezak int i386_set_ldt __P((int, union descriptor *, int));
     27  1.6       pk int sysarch __P((int, char *));
     28  1.1   brezak #endif
     29  1.2  mycroft 
     30  1.2  mycroft #endif /* !_I386_SYSARCH_H_ */
     31