diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:53:59 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 06:34:03 +0900 |
commit | 072c63671c42b8ebcc3561b003bc087676be97fb (patch) | |
tree | 47439cb9d62ef0a363db83a67a60c068def4e6f3 /i386 | |
parent | bf2393db5d814edf92dc9c6bd01dbb0511dc2519 (diff) |
kern/bootstrap.c: remove forward declarations
* i386/i386/pcb.h: Include mach/thread_status.h.
Include machine/thread.h.
* kern/bootstrap.c: Include machine/pcb.h.
(user_stack_low, set_user_regs): Remove forward declarations.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/pcb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/i386/i386/pcb.h b/i386/i386/pcb.h index cea2fe2..4aad0b2 100644 --- a/i386/i386/pcb.h +++ b/i386/i386/pcb.h @@ -28,6 +28,8 @@ #include <sys/types.h> #include <mach/exec/exec.h> +#include <mach/thread_status.h> +#include <machine/thread.h> extern void pcb_init (thread_t thread); |