1994-10-27 07:14:23 +03:00
|
|
|
/* $NetBSD: sysarch.h,v 1.3 1994/10/27 04:16:29 cgd Exp $ */
|
|
|
|
|
1993-12-20 08:25:02 +03:00
|
|
|
#ifndef _I386_SYSARCH_H_
|
|
|
|
#define _I386_SYSARCH_H_
|
|
|
|
|
1993-09-19 22:58:14 +04:00
|
|
|
/*
|
|
|
|
* Architecture specific syscalls (i386)
|
|
|
|
*/
|
|
|
|
#define I386_GET_LDT 0
|
|
|
|
#define I386_SET_LDT 1
|
|
|
|
|
|
|
|
#ifndef KERNEL
|
|
|
|
int i386_get_ldt __P((int, union descriptor *, int));
|
|
|
|
int i386_set_ldt __P((int, union descriptor *, int));
|
|
|
|
#endif
|
1993-12-20 08:25:02 +03:00
|
|
|
|
|
|
|
#endif /* !_I386_SYSARCH_H_ */
|