sync
[bitrig.git] / sys / ddb / db_access.h
blob540ed72a5da743c4017e795d81a6a892491e0d92
1 /* $OpenBSD: db_access.h,v 1.5 2002/03/14 01:26:51 millert Exp $ */
2 /* $NetBSD: db_access.h,v 1.6 1994/10/09 08:29:57 mycroft Exp $ */
4 /*
5 * Mach Operating System
6 * Copyright (c) 1993,1992,1991,1990 Carnegie Mellon University
7 * All Rights Reserved.
8 *
9 * Permission to use, copy, modify and distribute this software and its
10 * documentation is hereby granted, provided that both the copyright
11 * notice and this permission notice appear in all copies of the
12 * software, derivative works or modified versions, and any portions
13 * thereof, and that both notices appear in supporting documentation.
15 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
17 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
19 * Carnegie Mellon requests users of this software to return to
21 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
22 * School of Computer Science
23 * Carnegie Mellon University
24 * Pittsburgh PA 15213-3890
26 * any improvements or extensions that they make and grant Carnegie Mellon
27 * the rights to redistribute these changes.
29 * Author: David B. Golub, Carnegie Mellon University
30 * Date: 7/90
34 * Data access functions for debugger.
36 db_expr_t db_get_value(db_addr_t, size_t, boolean_t);
37 void db_put_value(db_addr_t, size_t, db_expr_t);
39 void db_read_bytes(db_addr_t, size_t, char *);
40 void db_write_bytes(db_addr_t, size_t, char *);