Deleted Added
full compact
db_command.c (79418) db_command.c (79573)
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

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

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 *
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

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

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 * $FreeBSD: head/sys/ddb/db_command.c 79418 2001-07-08 04:56:07Z julian $
26 * $FreeBSD: head/sys/ddb/db_command.c 79573 2001-07-11 03:15:25Z bsd $
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33
34/*

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

396 { "set", db_set_cmd, CS_OWN, 0 },
397 { "write", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
398 { "w", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
399 { "delete", db_delete_cmd, 0, 0 },
400 { "d", db_delete_cmd, 0, 0 },
401 { "break", db_breakpoint_cmd, 0, 0 },
402 { "dwatch", db_deletewatch_cmd, 0, 0 },
403 { "watch", db_watchpoint_cmd, CS_MORE,0 },
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33
34/*

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

396 { "set", db_set_cmd, CS_OWN, 0 },
397 { "write", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
398 { "w", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
399 { "delete", db_delete_cmd, 0, 0 },
400 { "d", db_delete_cmd, 0, 0 },
401 { "break", db_breakpoint_cmd, 0, 0 },
402 { "dwatch", db_deletewatch_cmd, 0, 0 },
403 { "watch", db_watchpoint_cmd, CS_MORE,0 },
404 { "dhwatch", db_deletehwatch_cmd, 0, 0 },
405 { "hwatch", db_hwatchpoint_cmd, 0, 0 },
404 { "step", db_single_step_cmd, 0, 0 },
405 { "s", db_single_step_cmd, 0, 0 },
406 { "continue", db_continue_cmd, 0, 0 },
407 { "c", db_continue_cmd, 0, 0 },
408 { "until", db_trace_until_call_cmd,0, 0 },
409 { "next", db_trace_until_matching_cmd,0, 0 },
410 { "match", db_trace_until_matching_cmd,0, 0 },
411 { "trace", db_stack_trace_cmd, 0, 0 },

--- 158 unchanged lines hidden ---
406 { "step", db_single_step_cmd, 0, 0 },
407 { "s", db_single_step_cmd, 0, 0 },
408 { "continue", db_continue_cmd, 0, 0 },
409 { "c", db_continue_cmd, 0, 0 },
410 { "until", db_trace_until_call_cmd,0, 0 },
411 { "next", db_trace_until_matching_cmd,0, 0 },
412 { "match", db_trace_until_matching_cmd,0, 0 },
413 { "trace", db_stack_trace_cmd, 0, 0 },

--- 158 unchanged lines hidden ---