blob: 763f27413b1200ea19ea03e75a1210fa5fd588d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* $OpenBSD: sysarch.h,v 1.11 2012/10/10 11:23:47 sthen Exp $ */
/* $NetBSD: sysarch.h,v 1.8 1996/01/08 13:51:44 mycroft Exp $ */
#ifndef _MACHINE_SYSARCH_H_
#define _MACHINE_SYSARCH_H_
#include <sys/cdefs.h>
/*
* Architecture specific syscalls (i386)
*/
#define I386_GET_LDT 0
#define I386_SET_LDT 1
#define I386_IOPL 2
#define I386_GET_IOPERM 3
#define I386_SET_IOPERM 4
#define I386_VM86 5
#define I386_GET_FSBASE 6
#define I386_SET_FSBASE 7
#define I386_GET_GSBASE 8
#define I386_SET_GSBASE 9
struct i386_get_ldt_args {
int start;
union descriptor *desc;
int num;
};
struct i386_set_ldt_args {
int start;
union descriptor *desc;
int num;
};
struct i386_iopl_args {
int iopl;
};
struct i386_get_ioperm_args {
u_long *iomap;
};
struct i386_set_ioperm_args {
u_long *iomap;
};
#ifndef _KERNEL
__BEGIN_DECLS
int i386_get_ldt(int, union descriptor *, int);
int i386_set_ldt(int, union descriptor *, int);
int i386_iopl(int);
int i386_get_ioperm(u_long *);
int i386_set_ioperm(u_long *);
int i386_get_fsbase(void **);
int i386_set_fsbase(void *);
int i386_get_gsbase(void **);
int i386_set_gsbase(void *);
int sysarch(int, void *);
__END_DECLS
#else
uint32_t i386_get_threadbase(struct proc *, int);
int i386_set_threadbase(struct proc *, uint32_t, int);
#endif
#endif /* !_MACHINE_SYSARCH_H_ */
|