Deleted Added
full compact
db_command.c (5) db_command.c (623)
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

--- 8 unchanged lines hidden (view full) ---

17 *
18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

--- 8 unchanged lines hidden (view full) ---

17 *
18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 */
26/*
27 * HISTORY
28 * $Log: db_command.c,v $
29 *
25 *
30 * PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
31 * -------------------- ----- ----------------------
32 * CURRENT PATCH LEVEL: 1 00081
33 * -------------------- ----- ----------------------
34 *
35 * 01 Feb 93 Julian Elischer move strcmp to a more general
36 * part of the kernel.
37 *
38 * Revision 1.1 1992/03/25 21:45:02 pace
39 * Initial revision
40 *
41 * Revision 2.6 91/02/05 17:06:10 mrt
42 * Changed to new Mach copyright
43 * [91/01/31 16:17:18 mrt]
44 *
45 * Revision 2.5 91/01/08 17:31:54 rpd
46 * Forward reference for db_fncall();
47 * [91/01/04 12:35:17 rvb]
48 *
49 * Add call as a synonym for ! and match for next
50 * [91/01/04 12:14:48 rvb]
51 *
52 * Revision 2.4 90/11/07 16:49:15 rpd
53 * Added search.
54 * [90/11/06 rpd]
55 *
56 * Revision 2.3 90/10/25 14:43:45 rwd
57 * Changed db_fncall to print the result unsigned.
58 * [90/10/19 rpd]
59 *
60 * Added CS_MORE to db_watchpoint_cmd.
61 * [90/10/17 rpd]
62 * Added watchpoint commands: watch, dwatch, show watches.
63 * [90/10/16 rpd]
64 *
65 * Revision 2.2 90/08/27 21:50:10 dbg
66 * Remove 'listbreaks' - use 'show breaks' instead. Change 'show
67 * threads' to 'show all threads' to avoid clash with 'show thread'.
68 * Set 'dot' here from db_prev or db_next, depending on 'db_ed_style'
69 * flag and syntax table.
70 * [90/08/22 dbg]
71 * Reduce lint.
72 * [90/08/07 dbg]
73 * Created.
74 * [90/07/25 dbg]
75 *
26 * $Id$
76 */
27 */
28
77/*
78 * Author: David B. Golub, Carnegie Mellon University
79 * Date: 7/90
80 */
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33
81/*
82 * Command dispatcher.
83 */
84#include "param.h"
85#include "proc.h"
86#include <machine/db_machdep.h> /* type definitions */
87
88#include <ddb/db_lex.h>

--- 438 unchanged lines hidden ---
34/*
35 * Command dispatcher.
36 */
37#include "param.h"
38#include "proc.h"
39#include <machine/db_machdep.h> /* type definitions */
40
41#include <ddb/db_lex.h>

--- 438 unchanged lines hidden ---