diff options
author | peter <peter@FreeBSD.org> | 2005-04-14 05:25:40 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2005-04-14 05:25:40 +0000 |
commit | aa156413c0c830f12bc35a75c8092463d8266c9c (patch) | |
tree | 1ce6e5138f950225b25a9089e3475f4706dedc5a /sys/ddb | |
parent | 986da5a2b493f6101324c7ae3f5c6660d946d4eb (diff) | |
download | FreeBSD-src-aa156413c0c830f12bc35a75c8092463d8266c9c.zip FreeBSD-src-aa156413c0c830f12bc35a75c8092463d8266c9c.tar.gz |
rev 1.54 of i386/include/pcb.h depended on sys/proc.h. The prerequisite
was satisified for the rest of the kernel on the i386 build except for
these two files. Rather than adding a submarine include to pcb.h, I've
added proc.h here.
I forgot to include these with the original commit. Sorry folks.
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_print.c | 1 | ||||
-rw-r--r-- | sys/ddb/db_run.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c index 8f3f93d..6cffd6d 100644 --- a/sys/ddb/db_print.c +++ b/sys/ddb/db_print.c @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/kdb.h> +#include <sys/proc.h> #include <machine/pcb.h> diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c index 6e466c3..18f9c0d 100644 --- a/sys/ddb/db_run.c +++ b/sys/ddb/db_run.c @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/kdb.h> +#include <sys/proc.h> #include <machine/kdb.h> #include <machine/pcb.h> |