diff options
| author | Luoqi Chen <luoqi@FreeBSD.org> | 1999-04-28 01:04:33 +0000 |
|---|---|---|
| committer | Luoqi Chen <luoqi@FreeBSD.org> | 1999-04-28 01:04:33 +0000 |
| commit | 5206bca10a37e28de61458411f2a06b938eb6820 (patch) | |
| tree | 609612dddc7f4340495110d80a33a9c57e59f904 /sys/amd64/include/tss.h | |
| parent | a261bdc7a29dc61986d710cfeafbbdfb2bea7c77 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/include/tss.h')
| -rw-r--r-- | sys/amd64/include/tss.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/amd64/include/tss.h b/sys/amd64/include/tss.h index 565defab8cb7..636133a9a870 100644 --- a/sys/amd64/include/tss.h +++ b/sys/amd64/include/tss.h @@ -34,12 +34,14 @@ * SUCH DAMAGE. * * from: @(#)tss.h 5.4 (Berkeley) 1/18/91 - * $Id$ + * $Id: tss.h,v 1.8 1997/02/22 09:35:20 peter Exp $ */ #ifndef _MACHINE_TSS_H_ #define _MACHINE_TSS_H_ 1 +#include <machine/globals.h> + /* * Intel 386 Context Data Type */ @@ -79,4 +81,11 @@ struct i386tss { int tss_ioopt; /* options & io offset bitmap: currently zero */ /* XXX unimplemented .. i/o permission bitmap */ }; + +#ifdef KERNEL +#ifndef common_tss +extern struct i386tss common_tss; +#endif +#endif + #endif /* _MACHINE_TSS_H_ */ |
