From cbeffc9144bdab3f321f3c407e9e38a613f75340 Mon Sep 17 00:00:00 2001 From: Rod Grimes Date: Sat, 16 Oct 1993 16:47:35 +0000 Subject: [PATCH] Removed all patch kit headers, sccsid and rcsid strings, put $Id$ in, some minor cleanup. Added $Id$ to files that did not have any version info, etc --- sys/ddb/db_access.c | 18 ++------------ sys/ddb/db_access.h | 16 ++----------- sys/ddb/db_aout.c | 19 ++------------- sys/ddb/db_break.c | 39 ++----------------------------- sys/ddb/db_break.h | 24 ++----------------- sys/ddb/db_command.c | 53 +++--------------------------------------- sys/ddb/db_command.h | 18 ++------------ sys/ddb/db_examine.c | 29 ++--------------------- sys/ddb/db_expr.c | 27 ++------------------- sys/ddb/db_input.c | 22 ++---------------- sys/ddb/db_lex.c | 24 ++----------------- sys/ddb/db_lex.h | 20 ++-------------- sys/ddb/db_output.c | 44 ++--------------------------------- sys/ddb/db_output.h | 16 ++----------- sys/ddb/db_print.c | 39 ++----------------------------- sys/ddb/db_run.c | 40 ++----------------------------- sys/ddb/db_sym.c | 46 ++---------------------------------- sys/ddb/db_sym.h | 20 ++-------------- sys/ddb/db_trap.c | 34 ++------------------------- sys/ddb/db_variables.c | 25 ++------------------ sys/ddb/db_variables.h | 21 ++--------------- sys/ddb/db_watch.c | 28 ++-------------------- sys/ddb/db_watch.h | 18 ++------------ sys/ddb/db_write_cmd.c | 26 ++------------------- 24 files changed, 49 insertions(+), 617 deletions(-) diff --git a/sys/ddb/db_access.c b/sys/ddb/db_access.c index 63368c0cbc..cbb25dd371 100644 --- a/sys/ddb/db_access.c +++ b/sys/ddb/db_access.c @@ -22,24 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_access.c,v $ - * Revision 1.1 1992/03/25 21:44:50 pace - * Initial revision * - * Revision 2.3 91/02/05 17:05:44 mrt - * Changed to new Mach copyright - * [91/01/31 16:16:22 mrt] - * - * Revision 2.2 90/08/27 21:48:20 dbg - * Fix type declarations. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_access.h b/sys/ddb/db_access.h index ddc5349148..2fe5e1053f 100644 --- a/sys/ddb/db_access.h +++ b/sys/ddb/db_access.h @@ -22,22 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_access.h,v $ - * Revision 1.1 1992/03/25 21:44:53 pace - * Initial revision * - * Revision 2.3 91/02/05 17:05:49 mrt - * Changed to new Mach copyright - * [91/01/31 16:16:37 mrt] - * - * Revision 2.2 90/08/27 21:48:27 dbg - * Created. - * [90/08/07 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_aout.c b/sys/ddb/db_aout.c index 160c593886..d1c848f07d 100644 --- a/sys/ddb/db_aout.c +++ b/sys/ddb/db_aout.c @@ -22,25 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_aout.c,v $ - * Revision 1.1.1.1 1993/06/12 14:57:38 rgrimes - * Initial import, 0.1 + pk 0.2.4-B1 - * - * Revision 1.1 1992/03/25 21:44:55 pace - * Initial revision * - * Revision 2.3 91/02/05 17:05:55 mrt - * Changed to new Mach copyright - * [91/01/31 16:16:44 mrt] - * - * Revision 2.2 90/08/27 21:48:35 dbg - * Created. - * [90/08/17 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_break.c b/sys/ddb/db_break.c index 9db7a041a1..b4d0bbcb3e 100644 --- a/sys/ddb/db_break.c +++ b/sys/ddb/db_break.c @@ -22,45 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_break.c,v $ - * Revision 1.1 1992/03/25 21:44:57 pace - * Initial revision * - * Revision 2.7 91/02/05 17:06:00 mrt - * Changed to new Mach copyright - * [91/01/31 16:17:01 mrt] - * - * Revision 2.6 91/01/08 15:09:03 rpd - * Added db_map_equal, db_map_current, db_map_addr. - * [90/11/10 rpd] - * - * Revision 2.5 90/11/05 14:26:32 rpd - * Initialize db_breakpoints_inserted to TRUE. - * [90/11/04 rpd] - * - * Revision 2.4 90/10/25 14:43:33 rwd - * Added map field to breakpoints. - * Added map argument to db_set_breakpoint, db_delete_breakpoint, - * db_find_breakpoint. Added db_find_breakpoint_here. - * [90/10/18 rpd] - * - * Revision 2.3 90/09/28 16:57:07 jsb - * Fixed db_breakpoint_free. - * [90/09/18 rpd] - * - * Revision 2.2 90/08/27 21:49:53 dbg - * Reflected changes in db_printsym()'s calling seq. - * [90/08/20 af] - * Clear breakpoints only if inserted. - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_break.h b/sys/ddb/db_break.h index 874cbcb5c3..dc66dcab75 100644 --- a/sys/ddb/db_break.h +++ b/sys/ddb/db_break.h @@ -22,30 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_break.h,v $ - * Revision 1.1 1992/03/25 21:44:59 pace - * Initial revision * - * Revision 2.4 91/02/05 17:06:06 mrt - * Changed to new Mach copyright - * [91/01/31 16:17:10 mrt] - * - * Revision 2.3 90/10/25 14:43:40 rwd - * Added map field to breakpoints. - * [90/10/18 rpd] - * - * Revision 2.2 90/08/27 21:50:00 dbg - * Modularized typedef names. - * [90/08/20 af] - * Add external defintions. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index e660e183bd..8c2555dcce 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -22,62 +22,15 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_command.c,v $ - * - * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE - * -------------------- ----- ---------------------- - * CURRENT PATCH LEVEL: 1 00081 - * -------------------- ----- ---------------------- - * - * 01 Feb 93 Julian Elischer move strcmp to a more general - * part of the kernel. * - * Revision 1.1 1992/03/25 21:45:02 pace - * Initial revision - * - * Revision 2.6 91/02/05 17:06:10 mrt - * Changed to new Mach copyright - * [91/01/31 16:17:18 mrt] - * - * Revision 2.5 91/01/08 17:31:54 rpd - * Forward reference for db_fncall(); - * [91/01/04 12:35:17 rvb] - * - * Add call as a synonym for ! and match for next - * [91/01/04 12:14:48 rvb] - * - * Revision 2.4 90/11/07 16:49:15 rpd - * Added search. - * [90/11/06 rpd] - * - * Revision 2.3 90/10/25 14:43:45 rwd - * Changed db_fncall to print the result unsigned. - * [90/10/19 rpd] - * - * Added CS_MORE to db_watchpoint_cmd. - * [90/10/17 rpd] - * Added watchpoint commands: watch, dwatch, show watches. - * [90/10/16 rpd] - * - * Revision 2.2 90/08/27 21:50:10 dbg - * Remove 'listbreaks' - use 'show breaks' instead. Change 'show - * threads' to 'show all threads' to avoid clash with 'show thread'. - * Set 'dot' here from db_prev or db_next, depending on 'db_ed_style' - * flag and syntax table. - * [90/08/22 dbg] - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 */ + /* * Command dispatcher. */ diff --git a/sys/ddb/db_command.h b/sys/ddb/db_command.h index 938a3d6a28..191d7336a9 100644 --- a/sys/ddb/db_command.h +++ b/sys/ddb/db_command.h @@ -22,24 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_command.h,v $ - * Revision 1.1 1992/03/25 21:45:05 pace - * Initial revision * - * Revision 2.3 91/02/05 17:06:15 mrt - * Changed to new Mach copyright - * [91/01/31 16:17:28 mrt] - * - * Revision 2.2 90/08/27 21:50:19 dbg - * Replace db_last_address_examined with db_prev, db_next. - * [90/08/22 dbg] - * Created. - * [90/08/07 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c index 66f5f6858c..7a83692df1 100644 --- a/sys/ddb/db_examine.c +++ b/sys/ddb/db_examine.c @@ -22,35 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_examine.c,v $ - * Revision 1.1 1992/03/25 21:45:07 pace - * Initial revision * - * Revision 2.4 91/02/05 17:06:20 mrt - * Changed to new Mach copyright - * [91/01/31 16:17:37 mrt] - * - * Revision 2.3 90/11/07 16:49:23 rpd - * Added db_search_cmd, db_search. - * [90/11/06 rpd] - * - * Revision 2.2 90/08/27 21:50:38 dbg - * Add 'r', 'z' to print and examine formats. - * Change calling sequence of db_disasm. - * db_examine sets db_prev and db_next instead of explicitly - * advancing dot. - * [90/08/20 dbg] - * Reflected changes in db_printsym()'s calling seq. - * [90/08/20 af] - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c index 062662c48e..b02f225825 100644 --- a/sys/ddb/db_expr.c +++ b/sys/ddb/db_expr.c @@ -22,33 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_expr.c,v $ - * Revision 1.1 1992/03/25 21:45:09 pace - * Initial revision * - * Revision 2.3 91/02/05 17:06:25 mrt - * Changed to new Mach copyright - * [91/01/31 16:17:46 mrt] - * - * Revision 2.2 90/08/27 21:50:57 dbg - * Use '..' instead of '$$' for db_prev. - * Use '+' for db_next. - * [90/08/22 dbg] - * - * Allow repeated unary operators. - * [90/08/20 dbg] - * - * Reflected back rename of db_symbol_value->db_value_of_name - * [90/08/20 af] - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_input.c b/sys/ddb/db_input.c index 5ec7824c51..3cf0b0562b 100644 --- a/sys/ddb/db_input.c +++ b/sys/ddb/db_input.c @@ -22,28 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_input.c,v $ - * Revision 1.1 1992/03/25 21:45:10 pace - * Initial revision * - * Revision 2.4 91/02/14 14:41:53 mrt - * Add input line editing. - * [90/11/11 dbg] - * - * Revision 2.3 91/02/05 17:06:32 mrt - * Changed to new Mach copyright - * [91/01/31 16:18:13 mrt] - * - * Revision 2.2 90/08/27 21:51:03 dbg - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_lex.c b/sys/ddb/db_lex.c index dcfd90038a..84176383d1 100644 --- a/sys/ddb/db_lex.c +++ b/sys/ddb/db_lex.c @@ -22,30 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_lex.c,v $ - * Revision 1.1 1992/03/25 21:45:13 pace - * Initial revision * - * Revision 2.3 91/02/05 17:06:36 mrt - * Changed to new Mach copyright - * [91/01/31 16:18:20 mrt] - * - * Revision 2.2 90/08/27 21:51:10 dbg - * Add 'dotdot' token. - * [90/08/22 dbg] - * - * Allow backslash to quote any character into an identifier. - * Allow colon in identifier for symbol table qualification. - * [90/08/16 dbg] - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_lex.h b/sys/ddb/db_lex.h index 56c5569499..98c37478fe 100644 --- a/sys/ddb/db_lex.h +++ b/sys/ddb/db_lex.h @@ -22,26 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_lex.h,v $ - * Revision 1.1 1992/03/25 21:45:15 pace - * Initial revision * - * Revision 2.3 91/02/05 17:06:41 mrt - * Changed to new Mach copyright - * [91/01/31 16:18:28 mrt] - * - * Revision 2.2 90/08/27 21:51:16 dbg - * Add 'dotdot' token. - * [90/08/22 dbg] - * Export db_flush_lex. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c index 90c4903a77..442546b9b2 100644 --- a/sys/ddb/db_output.c +++ b/sys/ddb/db_output.c @@ -23,49 +23,9 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE - * -------------------- ----- ---------------------- - * CURRENT PATCH LEVEL: 4 00083 - * -------------------- ----- ---------------------- - * - * 14 Mar 93 Chris G. Demetriou Fixed so that tab is not output, - * use spaces instead. - */ -/* - * HISTORY - * $Log: db_output.c,v $ - * Revision 1.2 1993/07/27 10:52:00 davidg - * * Applied fixes from Bruce Evans to fix COW bugs, >1MB kernel loading, - * profiling, and various protection checks that cause security holes - * and system crashes. - * * Changed min/max/bcmp/ffs/strlen to be static inline functions - * - included from cpufunc.h in via systm.h. This change - * improves performance in many parts of the kernel - up to 5% in the - * networking layer alone. Note that this requires systm.h to be included - * in any file that uses these functions otherwise it won't be able to - * find them during the load. - * * Fixed incorrect call to splx() in if_is.c - * * Fixed bogus variable assignment to splx() in if_ed.c - * - * Revision 1.1.1.1 1993/06/12 14:57:37 rgrimes - * Initial import, 0.1 + pk 0.2.4-B1 - * - * Revision 1.1 1992/03/25 21:45:18 pace - * Initial revision - * - * Revision 2.3 91/02/05 17:06:45 mrt - * Changed to new Mach copyright - * [91/01/31 16:18:41 mrt] - * - * Revision 2.2 90/08/27 21:51:25 dbg - * Put extra features of db_doprnt in _doprnt. - * [90/08/20 dbg] - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_output.h b/sys/ddb/db_output.h index 3ad599d8cc..e0e345558d 100644 --- a/sys/ddb/db_output.h +++ b/sys/ddb/db_output.h @@ -22,22 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_output.h,v $ - * Revision 1.1 1992/03/25 21:45:20 pace - * Initial revision * - * Revision 2.3 91/02/05 17:06:49 mrt - * Changed to new Mach copyright - * [91/01/31 16:18:48 mrt] - * - * Revision 2.2 90/08/27 21:51:32 dbg - * Created. - * [90/08/07 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 8/90 diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c index 48eef38c6a..25e4c66600 100644 --- a/sys/ddb/db_print.c +++ b/sys/ddb/db_print.c @@ -22,45 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_print.c,v $ - * Revision 1.1 1992/03/25 21:45:22 pace - * Initial revision * - * Revision 2.5 91/02/05 17:06:53 mrt - * Changed to new Mach copyright - * [91/01/31 16:18:56 mrt] - * - * Revision 2.4 90/10/25 14:43:54 rwd - * Changed db_show_regs to print unsigned. - * [90/10/19 rpd] - * Generalized the watchpoint support. - * [90/10/16 rwd] - * - * Revision 2.3 90/09/09 23:19:52 rpd - * Avoid totally incorrect guesses of symbol names for small values. - * [90/08/30 17:39:08 af] - * - * Revision 2.2 90/08/27 21:51:49 dbg - * Insist that 'show thread' be called with an explicit address. - * [90/08/22 dbg] - * - * Fix type for db_maxoff. - * [90/08/20 dbg] - * - * Do not dereference the "valuep" field of a variable directly, - * call the new db_read/write_variable functions instead. - * Reflected changes in symbol lookup functions. - * [90/08/20 af] - * Reduce lint. - * [90/08/10 14:33:44 dbg] - * - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c index b8e33aa75e..78c0d4c1d4 100644 --- a/sys/ddb/db_run.c +++ b/sys/ddb/db_run.c @@ -22,46 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_run.c,v $ - * Revision 1.1 1992/03/25 21:45:24 pace - * Initial revision * - * Revision 2.5 91/02/05 17:06:58 mrt - * Changed to new Mach copyright - * [91/01/31 16:19:05 mrt] - * - * Revision 2.4 91/01/08 15:09:10 rpd - * Fixed bug in db_restart_at_pc. - * [90/12/07 rpd] - * Added STEP_COUNT and count option to db_continue_cmd. - * Changed db_stop_at_pc to return (modified) is_breakpoint. - * Fixed db_stop_at_pc to print newlines in the right places. - * [90/11/27 rpd] - * - * Revision 2.3 90/10/25 14:43:59 rwd - * Changed db_find_breakpoint to db_find_breakpoint_here. - * [90/10/18 rpd] - * - * Fixed db_set_single_step to pass regs to branch_taken. - * Added watchpoint argument to db_restart_at_pc. - * [90/10/17 rpd] - * Generalized the watchpoint support. - * [90/10/16 rwd] - * Added watchpoint support. - * [90/10/16 rpd] - * - * Revision 2.2 90/08/27 21:51:59 dbg - * Fixed names for single-step functions. - * [90/08/20 af] - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index 0517c68521..fd02ae455c 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -22,52 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_sym.c,v $ - * Revision 1.1 1992/03/25 21:45:27 pace - * Initial revision * - * Revision 2.5 91/02/05 17:07:07 mrt - * Changed to new Mach copyright - * [91/01/31 16:19:17 mrt] - * - * Revision 2.4 90/10/25 14:44:05 rwd - * Changed db_printsym to print unsigned. - * [90/10/19 rpd] - * - * Revision 2.3 90/09/09 23:19:56 rpd - * Avoid totally incorrect guesses of symbol names for small values. - * [90/08/30 17:39:48 af] - * - * Revision 2.2 90/08/27 21:52:18 dbg - * Removed nlist.h. Fixed some type declarations. - * Qualifier character is ':'. - * [90/08/20 dbg] - * Modularized symtab info into a new db_symtab_t type. - * Modified db_add_symbol_table and others accordingly. - * Defined db_sym_t, a new (opaque) type used to represent - * symbols. This should support all sort of future symtable - * formats. Functions like db_qualify take a db_sym_t now. - * New db_symbol_values() function to explode the content - * of a db_sym_t. - * db_search_symbol() replaces db_find_sym_and_offset(), which is - * now a macro defined in our (new) header file. This new - * function accepts more restrictive searches, which are - * entirely delegated to the symtab-specific code. - * Accordingly, db_printsym() accepts a strategy parameter. - * New db_line_at_pc() function. - * Renamed misleading db_eqsym into db_eqname. - * [90/08/20 10:47:06 af] - * - * Created. - * [90/07/25 dbg] - * - * Revision 2.1 90/07/26 16:43:52 dbg - * Created. - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h index 663f1cd420..bc17bd0256 100644 --- a/sys/ddb/db_sym.h +++ b/sys/ddb/db_sym.h @@ -22,26 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_sym.h,v $ - * Revision 1.1 1992/03/25 21:45:29 pace - * Initial revision * - * Revision 2.3 91/02/05 17:07:12 mrt - * Changed to new Mach copyright - * [91/01/31 16:19:27 mrt] - * - * Revision 2.2 90/08/27 21:52:39 dbg - * Changed type of db_sym_t to char * - it's a better type for an - * opaque pointer. - * [90/08/22 dbg] - * - * Created. - * [90/08/19 af] - * + * $Id$ */ + /* * Author: Alessandro Forin, Carnegie Mellon University * Date: 8/90 diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c index 099fab1439..bcdc4f47f4 100644 --- a/sys/ddb/db_trap.c +++ b/sys/ddb/db_trap.c @@ -22,40 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_trap.c,v $ - * Revision 1.1 1992/03/25 21:45:31 pace - * Initial revision * - * Revision 2.5 91/02/05 17:07:16 mrt - * Changed to new Mach copyright - * [91/01/31 16:19:35 mrt] - * - * Revision 2.4 91/01/08 15:09:17 rpd - * Changed db_stop_at_pc's arguments. - * Print db_inst_count, db_load_count, db_store_count. - * [90/11/27 rpd] - * - * Revision 2.3 90/10/25 14:44:11 rwd - * From rpd. - * [90/10/19 17:03:17 rwd] - * - * Generalized the watchpoint support. - * [90/10/16 rwd] - * Added watchpoint support. - * [90/10/16 rpd] - * - * Revision 2.2 90/08/27 21:52:52 dbg - * Assign to db_dot before calling the print function. - * [90/08/20 af] - * Reduce lint. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c index ed9512df52..cd59bb2d57 100644 --- a/sys/ddb/db_variables.c +++ b/sys/ddb/db_variables.c @@ -22,31 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_variables.c,v $ - * Revision 1.1 1992/03/25 21:45:33 pace - * Initial revision * - * Revision 2.3 91/02/05 17:07:19 mrt - * Changed to new Mach copyright - * [91/01/31 16:19:46 mrt] - * - * Revision 2.2 90/08/27 21:53:24 dbg - * New db_read/write_variable functions. Should be used instead - * of dereferencing valuep directly, which might not be a true - * pointer if there is an fcn() access function. - * [90/08/20 af] - * - * Fix declarations. - * Check for trailing garbage after last expression on command line. - * [90/08/10 14:34:54 dbg] - * - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_variables.h b/sys/ddb/db_variables.h index f958d2c383..25558bc28b 100644 --- a/sys/ddb/db_variables.h +++ b/sys/ddb/db_variables.h @@ -22,27 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_variables.h,v $ - * Revision 1.1 1992/03/25 21:45:35 pace - * Initial revision * - * Revision 2.3 91/02/05 17:07:23 mrt - * Changed to new Mach copyright - * [91/01/31 16:19:54 mrt] - * - * Revision 2.2 90/08/27 21:53:40 dbg - * Modularized typedef name. Documented the calling sequence of - * the (optional) access function of a variable. Now the valuep - * field can be made opaque, eg be an offset that fcn() resolves. - * [90/08/20 af] - * - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c index e69d906d93..b027732b9d 100644 --- a/sys/ddb/db_watch.c +++ b/sys/ddb/db_watch.c @@ -22,34 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_watch.c,v $ - * Revision 1.1 1992/03/25 21:45:37 pace - * Initial revision * - * Revision 2.5 91/02/05 17:07:27 mrt - * Changed to new Mach copyright - * [91/01/31 16:20:02 mrt] - * - * Revision 2.4 91/01/08 15:09:24 rpd - * Use db_map_equal, db_map_current, db_map_addr. - * [90/11/10 rpd] - * - * Revision 2.3 90/11/05 14:26:39 rpd - * Initialize db_watchpoints_inserted to TRUE. - * [90/11/04 rpd] - * - * Revision 2.2 90/10/25 14:44:16 rwd - * Made db_watchpoint_cmd parse a size argument. - * [90/10/17 rpd] - * Generalized the watchpoint support. - * [90/10/16 rwd] - * Created. - * [90/10/16 rpd] - * + * $Id$ */ + /* * Author: Richard P. Draves, Carnegie Mellon University * Date: 10/90 diff --git a/sys/ddb/db_watch.h b/sys/ddb/db_watch.h index 9795755bfd..f8932de39d 100644 --- a/sys/ddb/db_watch.h +++ b/sys/ddb/db_watch.h @@ -22,24 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_watch.h,v $ - * Revision 1.1 1992/03/25 21:45:40 pace - * Initial revision * - * Revision 2.3 91/02/05 17:07:31 mrt - * Changed to new Mach copyright - * [91/01/31 16:20:09 mrt] - * - * Revision 2.2 90/10/25 14:44:21 rwd - * Generalized the watchpoint support. - * [90/10/16 rwd] - * Created. - * [90/10/16 rpd] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 10/90 diff --git a/sys/ddb/db_write_cmd.c b/sys/ddb/db_write_cmd.c index dce22a915c..0113958c9b 100644 --- a/sys/ddb/db_write_cmd.c +++ b/sys/ddb/db_write_cmd.c @@ -22,32 +22,10 @@ * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. - */ -/* - * HISTORY - * $Log: db_write_cmd.c,v $ - * Revision 1.1 1992/03/25 21:45:42 pace - * Initial revision * - * Revision 2.4 91/02/05 17:07:35 mrt - * Changed to new Mach copyright - * [91/01/31 16:20:19 mrt] - * - * Revision 2.3 90/10/25 14:44:26 rwd - * Changed db_write_cmd to print unsigned. - * [90/10/19 rpd] - * - * Revision 2.2 90/08/27 21:53:54 dbg - * Set db_prev and db_next instead of explicitly advancing dot. - * [90/08/22 dbg] - * Reflected changes in db_printsym()'s calling seq. - * [90/08/20 af] - * Warn user if nothing was written. - * [90/08/07 dbg] - * Created. - * [90/07/25 dbg] - * + * $Id$ */ + /* * Author: David B. Golub, Carnegie Mellon University * Date: 7/90 -- 2.20.1