Deleted Added
full compact
ddb.h (7090) ddb.h (8876)
1/*-
2 * Copyright (c) 1993, Garrett A. Wollman.
3 * Copyright (c) 1993, University of Vermont and State Agricultural College.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
1/*-
2 * Copyright (c) 1993, Garrett A. Wollman.
3 * Copyright (c) 1993, University of Vermont and State Agricultural College.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
30 * $Id: ddb.h,v 1.4 1994/09/27 12:15:56 davidg Exp $
30 * $Id: ddb.h,v 1.5 1995/03/16 18:11:01 bde Exp $
31 */
32
33/*
34 * Necessary declarations for the `ddb' kernel debugger.
35 */
36
37#ifndef __h_ddb_ddb
38#define __h_ddb_ddb 1

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

50extern int db_store_count;
51extern int db_radix;
52extern int db_max_width;
53extern int db_tab_stop_width;
54
55/*
56 * Functions...
57 */
31 */
32
33/*
34 * Necessary declarations for the `ddb' kernel debugger.
35 */
36
37#ifndef __h_ddb_ddb
38#define __h_ddb_ddb 1

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

50extern int db_store_count;
51extern int db_radix;
52extern int db_max_width;
53extern int db_tab_stop_width;
54
55/*
56 * Functions...
57 */
58extern void
59db_read_bytes(vm_offset_t addr, register int size, register char *data);
58extern void
59db_read_bytes(vm_offset_t addr, register int size, register char *data);
60 /* machine-dependent */
61
62extern void
63db_write_bytes(vm_offset_t addr, register int size, register char *data);
64 /* machine-dependent */
65
66struct vm_map; /* forward declaration */
67

--- 46 unchanged lines hidden ---
60 /* machine-dependent */
61
62extern void
63db_write_bytes(vm_offset_t addr, register int size, register char *data);
64 /* machine-dependent */
65
66struct vm_map; /* forward declaration */
67

--- 46 unchanged lines hidden ---