diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-12-24 04:21:20 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-12-24 04:21:20 +0000 |
commit | 4b8b462779fb9eb85d071edc0ef1951408174357 (patch) | |
tree | b44652bf5e0ac2b4cd02aeefbc42da97822d2530 /sys/arch | |
parent | 2d93e72c26ab9fb4200f45280b5e048e03256d12 (diff) |
Need <machine/pcb.h> for TSEG_GS
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/include/tcb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/include/tcb.h b/sys/arch/i386/include/tcb.h index 33f8e472cfd..7659f31b67d 100644 --- a/sys/arch/i386/include/tcb.h +++ b/sys/arch/i386/include/tcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcb.h,v 1.1 2011/11/07 15:46:06 guenther Exp $ */ +/* $OpenBSD: tcb.h,v 1.2 2011/12/24 04:21:19 guenther Exp $ */ /* * Copyright (c) 2011 Philip Guenther <guenther@openbsd.org> * @@ -21,6 +21,7 @@ #ifdef _KERNEL #include <machine/sysarch.h> +#include <machine/pcb.h> #define TCB_GET(p) \ i386_get_threadbase(p, TSEG_GS) |