diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 1994-08-13 03:50:34 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 1994-08-13 03:50:34 +0000 |
commit | f540b1065abc6d6d31f876c6eeb288f9ad035840 (patch) | |
tree | 07eb9071a15263c4512c588b90a4dc8f336abc9f /sys/ddb | |
parent | 24420201d81b5811215d97084494e6cc03c95ef5 (diff) | |
download | src-f540b1065abc6d6d31f876c6eeb288f9ad035840.tar.gz src-f540b1065abc6d6d31f876c6eeb288f9ad035840.zip |
Notes
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_access.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_aout.c | 14 | ||||
-rw-r--r-- | sys/ddb/db_break.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_command.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_command.h | 6 | ||||
-rw-r--r-- | sys/ddb/db_examine.c | 20 | ||||
-rw-r--r-- | sys/ddb/db_expr.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_input.c | 14 | ||||
-rw-r--r-- | sys/ddb/db_lex.c | 8 | ||||
-rw-r--r-- | sys/ddb/db_output.c | 12 | ||||
-rw-r--r-- | sys/ddb/db_print.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_run.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_sym.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_trap.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_variables.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_watch.c | 10 | ||||
-rw-r--r-- | sys/ddb/db_write_cmd.c | 10 |
17 files changed, 92 insertions, 92 deletions
diff --git a/sys/ddb/db_access.c b/sys/ddb/db_access.c index 9c8a00b29591..196634d81f0d 100644 --- a/sys/ddb/db_access.c +++ b/sys/ddb/db_access.c @@ -23,17 +23,17 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_access.c,v 1.3 1993/11/25 01:30:01 wollman Exp $ + * $Id: db_access.c,v 1.4 1993/12/19 00:49:42 wollman Exp $ */ /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> /* * Access unaligned data items on aligned (longword) diff --git a/sys/ddb/db_aout.c b/sys/ddb/db_aout.c index e256f213abee..41187a72f852 100644 --- a/sys/ddb/db_aout.c +++ b/sys/ddb/db_aout.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_aout.c,v 1.5 1994/01/03 07:54:08 davidg Exp $ + * $Id: db_aout.c,v 1.6 1994/01/14 16:23:00 davidg Exp $ */ /* @@ -34,17 +34,17 @@ * Symbol table routines for a.out format files. */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_sym.h> #ifndef DB_NO_AOUT #define _AOUT_INCLUDE_ -#include "nlist.h" -#include "stab.h" +#include <nlist.h> +#include <stab.h> /* * An a.out symbol table as loaded into the kernel debugger: diff --git a/sys/ddb/db_break.c b/sys/ddb/db_break.c index 41761e818b1b..d9f9f2ff04d2 100644 --- a/sys/ddb/db_break.c +++ b/sys/ddb/db_break.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_break.c,v 1.2 1993/10/16 16:47:07 rgrimes Exp $ + * $Id: db_break.c,v 1.3 1993/11/25 01:30:03 wollman Exp $ */ /* @@ -33,10 +33,10 @@ /* * Breakpoints. */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_lex.h> #include <ddb/db_break.h> diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 45fd5c5be6c6..d7f3f004a795 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_command.c,v 1.3 1993/11/25 01:30:04 wollman Exp $ + * $Id: db_command.c,v 1.5 1994/05/25 08:51:12 rgrimes Exp $ */ /* @@ -34,10 +34,10 @@ /* * Command dispatcher. */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_lex.h> #include <ddb/db_output.h> diff --git a/sys/ddb/db_command.h b/sys/ddb/db_command.h index a883e63cfccf..38e86fd9a2d7 100644 --- a/sys/ddb/db_command.h +++ b/sys/ddb/db_command.h @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_command.h,v 1.2 1993/10/16 16:47:12 rgrimes Exp $ + * $Id: db_command.h,v 1.3 1993/11/07 17:39:22 wollman Exp $ */ #ifndef _DDB_DB_COMMAND_H_ @@ -37,8 +37,8 @@ * Command loop declarations. */ -#include "param.h" -#include "proc.h" +#include <sys/param.h> +#include <sys/proc.h> #include <machine/db_machdep.h> extern void db_command_loop(); diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c index f4f7ba1f0149..7fd55a2f534c 100644 --- a/sys/ddb/db_examine.c +++ b/sys/ddb/db_examine.c @@ -23,24 +23,24 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_examine.c,v 1.3 1993/11/25 01:30:05 wollman Exp $ + * $Id: db_examine.c,v 1.4 1993/12/19 00:49:43 wollman Exp $ */ /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> -#include "ddb/ddb.h" +#include <ddb/ddb.h> -#include "ddb/db_lex.h" -#include "ddb/db_output.h" -#include "ddb/db_command.h" -#include "ddb/db_sym.h" -#include "ddb/db_access.h" +#include <ddb/db_lex.h> +#include <ddb/db_output.h> +#include <ddb/db_command.h> +#include <ddb/db_sym.h> +#include <ddb/db_access.h> char db_examine_format[TOK_STRING_SIZE] = "x"; diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c index 3d239496479d..1c7eea1fb840 100644 --- a/sys/ddb/db_expr.c +++ b/sys/ddb/db_expr.c @@ -23,17 +23,17 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_expr.c,v 1.2 1993/10/16 16:47:14 rgrimes Exp $ + * $Id: db_expr.c,v 1.3 1993/11/25 01:30:06 wollman Exp $ */ /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_lex.h> #include <ddb/db_access.h> #include <ddb/db_command.h> diff --git a/sys/ddb/db_input.c b/sys/ddb/db_input.c index 94bab946c357..d768992575fe 100644 --- a/sys/ddb/db_input.c +++ b/sys/ddb/db_input.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_input.c,v 1.3 1993/11/25 01:30:06 wollman Exp $ + * $Id: db_input.c,v 1.4 1993/12/19 00:49:44 wollman Exp $ */ /* @@ -31,12 +31,12 @@ * Date: 7/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" -#include "ddb/db_output.h" -#include "machine/cons.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> +#include <ddb/db_output.h> +#include <machine/cons.h> /* * Character input and editing. diff --git a/sys/ddb/db_lex.c b/sys/ddb/db_lex.c index 655a1b53dbb0..1c883d883dd2 100644 --- a/sys/ddb/db_lex.c +++ b/sys/ddb/db_lex.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_lex.c,v 1.2 1993/10/16 16:47:17 rgrimes Exp $ + * $Id: db_lex.c,v 1.3 1993/11/25 01:30:07 wollman Exp $ */ /* @@ -33,9 +33,9 @@ /* * Lexical analyzer. */ -#include "param.h" -#include "systm.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <ddb/ddb.h> #include <ddb/db_lex.h> char db_line[120]; diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c index fc1bb1450be1..98b668a3fbf4 100644 --- a/sys/ddb/db_output.c +++ b/sys/ddb/db_output.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_output.c,v 1.5 1993/11/25 01:30:08 wollman Exp $ + * $Id: db_output.c,v 1.6 1993/12/19 00:49:45 wollman Exp $ */ /* @@ -35,11 +35,11 @@ * Printf and character output for debugger. */ -#include "param.h" -#include "systm.h" -#include "machine/stdarg.h" -#include "ddb/ddb.h" -#include "machine/cons.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <machine/stdarg.h> +#include <ddb/ddb.h> +#include <machine/cons.h> /* * Character output - tracks position in line. diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c index 7ab209977202..10c4bcd57114 100644 --- a/sys/ddb/db_print.c +++ b/sys/ddb/db_print.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_print.c,v 1.2 1993/10/16 16:47:22 rgrimes Exp $ + * $Id: db_print.c,v 1.3 1993/11/25 01:30:09 wollman Exp $ */ /* @@ -34,11 +34,11 @@ /* * Miscellaneous printing. */ -#include "param.h" -#include "systm.h" -#include "proc.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> -#include "ddb/ddb.h" +#include <ddb/ddb.h> #include <ddb/db_lex.h> #include <ddb/db_variables.h> diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c index 1ba43c10a00e..4b1bd15c7440 100644 --- a/sys/ddb/db_run.c +++ b/sys/ddb/db_run.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_run.c,v 1.2 1993/10/16 16:47:24 rgrimes Exp $ + * $Id: db_run.c,v 1.3 1993/11/25 01:30:10 wollman Exp $ */ /* @@ -34,10 +34,10 @@ /* * Commands to run process. */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_lex.h> #include <ddb/db_break.h> diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index af22a97919e4..0c07bd8f7844 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -23,17 +23,17 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_sym.c,v 1.3 1993/11/25 01:30:12 wollman Exp $ + * $Id: db_sym.c,v 1.4 1994/01/03 07:54:10 davidg Exp $ */ /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_sym.h> /* diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c index abfa770d358c..05b0487e1c92 100644 --- a/sys/ddb/db_trap.c +++ b/sys/ddb/db_trap.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_trap.c,v 1.2 1993/10/16 16:47:28 rgrimes Exp $ + * $Id: db_trap.c,v 1.3 1993/11/25 01:30:12 wollman Exp $ */ /* @@ -34,10 +34,10 @@ /* * Trap entry point to kernel debugger. */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_command.h> #include <ddb/db_break.h> diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c index 96ef62057a58..fe5230a20256 100644 --- a/sys/ddb/db_variables.c +++ b/sys/ddb/db_variables.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_variables.c,v 1.2 1993/10/16 16:47:29 rgrimes Exp $ + * $Id: db_variables.c,v 1.3 1993/11/25 01:30:13 wollman Exp $ */ /* @@ -31,10 +31,10 @@ * Date: 7/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_lex.h> #include <ddb/db_variables.h> diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c index 0322a1805c03..afeedf4f12b6 100644 --- a/sys/ddb/db_watch.c +++ b/sys/ddb/db_watch.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_watch.c,v 1.2 1993/10/16 16:47:32 rgrimes Exp $ + * $Id: db_watch.c,v 1.3 1993/11/25 01:30:15 wollman Exp $ */ /* @@ -31,10 +31,10 @@ * Date: 10/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <vm/vm_map.h> #include <ddb/db_lex.h> diff --git a/sys/ddb/db_write_cmd.c b/sys/ddb/db_write_cmd.c index 6de58a68e492..e2625ca0df5f 100644 --- a/sys/ddb/db_write_cmd.c +++ b/sys/ddb/db_write_cmd.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_write_cmd.c,v 1.2 1993/10/16 16:47:35 rgrimes Exp $ + * $Id: db_write_cmd.c,v 1.3 1993/11/25 01:30:16 wollman Exp $ */ /* @@ -31,10 +31,10 @@ * Date: 7/90 */ -#include "param.h" -#include "systm.h" -#include "proc.h" -#include "ddb/ddb.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/proc.h> +#include <ddb/ddb.h> #include <ddb/db_lex.h> #include <ddb/db_access.h> |