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

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

27 * Author: David B. Golub, Carnegie Mellon University
28 * Date: 7/90
29 */
30/*
31 * Command dispatcher.
32 */
33
34#include <sys/cdefs.h>
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

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

27 * Author: David B. Golub, Carnegie Mellon University
28 * Date: 7/90
29 */
30/*
31 * Command dispatcher.
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/ddb/db_command.c 118268 2003-07-31 17:27:52Z jhb $");
35__FBSDID("$FreeBSD: head/sys/ddb/db_command.c 118990 2003-08-16 16:57:57Z marcel $");
36
37#include <sys/param.h>
38#include <sys/linker_set.h>
39#include <sys/lock.h>
40#include <sys/mutex.h>
41#include <sys/proc.h>
42#include <sys/reboot.h>
43#include <sys/signalvar.h>
44#include <sys/systm.h>
45#include <sys/cons.h>
46
47#include <ddb/ddb.h>
48#include <ddb/db_command.h>
49#include <ddb/db_lex.h>
50#include <ddb/db_output.h>
51
36
37#include <sys/param.h>
38#include <sys/linker_set.h>
39#include <sys/lock.h>
40#include <sys/mutex.h>
41#include <sys/proc.h>
42#include <sys/reboot.h>
43#include <sys/signalvar.h>
44#include <sys/systm.h>
45#include <sys/cons.h>
46
47#include <ddb/ddb.h>
48#include <ddb/db_command.h>
49#include <ddb/db_lex.h>
50#include <ddb/db_output.h>
51
52#include <machine/md_var.h>
52#include <machine/cpu.h>
53#include <machine/setjmp.h>
54
55/*
56 * Exported global variables
57 */
58boolean_t db_cmd_loop_done;
59db_addr_t db_dot;
60jmp_buf db_jmpbuf;

--- 581 unchanged lines hidden ---
53#include <machine/setjmp.h>
54
55/*
56 * Exported global variables
57 */
58boolean_t db_cmd_loop_done;
59db_addr_t db_dot;
60jmp_buf db_jmpbuf;

--- 581 unchanged lines hidden ---