aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/include/sysarch.h
blob: 2649ba5fe211155fd4cd367aa98a51a8435f77f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Architecture specific syscalls (i386)
 *
 *	$Id: sysarch.h,v 1.2 1993/10/16 14:39:35 rgrimes Exp $
 */
#ifndef _MACHINE_SYSARCH_H_
#define _MACHINE_SYSARCH_H_ 1

#include <sys/cdefs.h>

#define I386_GET_LDT	0
#define I386_SET_LDT	1

#ifdef KERNEL
/* nothing here yet... */
#else /* not KERNEL */
__BEGIN_DECLS

int i386_get_ldt __P((int, union descriptor *, int));
int i386_set_ldt __P((int, union descriptor *, int));

__END_DECLS
#endif /* not KERNEL */
#endif /* _MACHINE_SYSARCH_H_ */