Deleted Added
full compact
trap.c (205360) trap.c (206695)
1/* $OpenBSD: trap.c,v 1.19 1998/09/30 12:40:41 pefo Exp $ */
2/* tracked to 1.23 */
3/*-
4 * Copyright (c) 1988 University of Utah.
5 * Copyright (c) 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

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

34 * SUCH DAMAGE.
35 *
36 * from: Utah Hdr: trap.c 1.32 91/04/06
37 *
38 * from: @(#)trap.c 8.5 (Berkeley) 1/11/94
39 * JNPR: trap.c,v 1.13.2.2 2007/08/29 10:03:49 girish
40 */
41#include <sys/cdefs.h>
1/* $OpenBSD: trap.c,v 1.19 1998/09/30 12:40:41 pefo Exp $ */
2/* tracked to 1.23 */
3/*-
4 * Copyright (c) 1988 University of Utah.
5 * Copyright (c) 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

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

34 * SUCH DAMAGE.
35 *
36 * from: Utah Hdr: trap.c 1.32 91/04/06
37 *
38 * from: @(#)trap.c 8.5 (Berkeley) 1/11/94
39 * JNPR: trap.c,v 1.13.2.2 2007/08/29 10:03:49 girish
40 */
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/sys/mips/mips/trap.c 205360 2010-03-20 05:07:15Z neel $");
42__FBSDID("$FreeBSD: head/sys/mips/mips/trap.c 206695 2010-04-16 02:56:24Z jmallett $");
43
44#include "opt_ddb.h"
45#include "opt_global.h"
46#include "opt_ktrace.h"
47
48#define NO_REG_DEFS 1 /* Prevent asm.h from including regdef.h */
49#include <sys/param.h>
50#include <sys/systm.h>

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

78#include <machine/psl.h>
79#include <machine/cpu.h>
80#include <machine/pte.h>
81#include <machine/pmap.h>
82#include <machine/md_var.h>
83#include <machine/mips_opcode.h>
84#include <machine/frame.h>
85#include <machine/regnum.h>
43
44#include "opt_ddb.h"
45#include "opt_global.h"
46#include "opt_ktrace.h"
47
48#define NO_REG_DEFS 1 /* Prevent asm.h from including regdef.h */
49#include <sys/param.h>
50#include <sys/systm.h>

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

78#include <machine/psl.h>
79#include <machine/cpu.h>
80#include <machine/pte.h>
81#include <machine/pmap.h>
82#include <machine/md_var.h>
83#include <machine/mips_opcode.h>
84#include <machine/frame.h>
85#include <machine/regnum.h>
86#include <machine/rm7000.h>
87#include <machine/archtype.h>
88#include <machine/asm.h>
89
90#ifdef DDB
91#include <machine/db_machdep.h>
92#include <ddb/db_sym.h>
93#include <ddb/ddb.h>
94#include <sys/kdb.h>
95#endif

--- 1349 unchanged lines hidden ---
86#include <machine/asm.h>
87
88#ifdef DDB
89#include <machine/db_machdep.h>
90#include <ddb/db_sym.h>
91#include <ddb/ddb.h>
92#include <sys/kdb.h>
93#endif

--- 1349 unchanged lines hidden ---