Deleted Added
full compact
db_machdep.h (81334) db_machdep.h (82004)
1/*-
2 * Copyright (c) 2001 Jake Burkholder.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Jake Burkholder.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/sparc64/include/db_machdep.h 81334 2001-08-09 02:09:34Z obrien $
26 * $FreeBSD: head/sys/sparc64/include/db_machdep.h 82004 2001-08-20 23:35:15Z jake $
27 */
28
29#ifndef _MACHINE_DB_MACHDEP_H_
30#define _MACHINE_DB_MACHDEP_H_
31
32#include <machine/frame.h>
33#include <machine/trap.h>
34
35#define BYTE_MSF (1)
36
37typedef vm_offset_t db_addr_t;
27 */
28
29#ifndef _MACHINE_DB_MACHDEP_H_
30#define _MACHINE_DB_MACHDEP_H_
31
32#include <machine/frame.h>
33#include <machine/trap.h>
34
35#define BYTE_MSF (1)
36
37typedef vm_offset_t db_addr_t;
38typedef u_long db_expr_t;
38typedef long db_expr_t;
39
40struct db_regs {
41 u_long dr_global[8];
42};
43
44typedef struct trapframe db_regs_t;
45extern db_regs_t ddb_regs;
46#define DDB_REGS (&ddb_regs)

--- 30 unchanged lines hidden ---
39
40struct db_regs {
41 u_long dr_global[8];
42};
43
44typedef struct trapframe db_regs_t;
45extern db_regs_t ddb_regs;
46#define DDB_REGS (&ddb_regs)

--- 30 unchanged lines hidden ---