Deleted Added
full compact
db_interface.c (76440) db_interface.c (79418)
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/amd64/amd64/db_interface.c 76440 2001-05-10 17:45:49Z jhb $
26 * $FreeBSD: head/sys/amd64/amd64/db_interface.c 79418 2001-07-08 04:56:07Z julian $
27 */
28
29/*
30 * Interface to new debugger.
31 */
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/reboot.h>

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

48#include <vm/vm.h>
49#include <vm/pmap.h>
50
51#include <ddb/ddb.h>
52#include <ddb/db_access.h>
53#include <ddb/db_sym.h>
54#include <ddb/db_variables.h>
55
27 */
28
29/*
30 * Interface to new debugger.
31 */
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/reboot.h>

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

48#include <vm/vm.h>
49#include <vm/pmap.h>
50
51#include <ddb/ddb.h>
52#include <ddb/db_access.h>
53#include <ddb/db_sym.h>
54#include <ddb/db_variables.h>
55
56#include
56#include <machine/setjmp.h>
57
58static jmp_buf *db_nofault = 0;
59extern jmp_buf db_jmpbuf;
60
61extern void gdb_handle_exception __P((db_regs_t *, int, int));
62
63int db_active;
64db_regs_t ddb_regs;

--- 314 unchanged lines hidden ---
57
58static jmp_buf *db_nofault = 0;
59extern jmp_buf db_jmpbuf;
60
61extern void gdb_handle_exception __P((db_regs_t *, int, int));
62
63int db_active;
64db_regs_t ddb_regs;

--- 314 unchanged lines hidden ---