sysarch.h revision 719
1550Srgrimes/*
2550Srgrimes * Architecture specific syscalls (i386)
3621Srgrimes *
4719Swollman *	$Id: sysarch.h,v 1.2 1993/10/16 14:39:35 rgrimes Exp $
5550Srgrimes */
6719Swollman#ifndef _MACHINE_SYSARCH_H_
7719Swollman#define _MACHINE_SYSARCH_H_ 1
8719Swollman
9719Swollman#include <sys/cdefs.h>
10719Swollman
11550Srgrimes#define I386_GET_LDT	0
12550Srgrimes#define I386_SET_LDT	1
13550Srgrimes
14719Swollman#ifdef KERNEL
15719Swollman/* nothing here yet... */
16719Swollman#else /* not KERNEL */
17719Swollman__BEGIN_DECLS
18719Swollman
19550Srgrimesint i386_get_ldt __P((int, union descriptor *, int));
20550Srgrimesint i386_set_ldt __P((int, union descriptor *, int));
21719Swollman
22719Swollman__END_DECLS
23719Swollman#endif /* not KERNEL */
24719Swollman#endif /* _MACHINE_SYSARCH_H_ */
25