1*433d6423SLionel Sambuc /* 2*433d6423SLionel Sambuc * Mach Operating System 3*433d6423SLionel Sambuc * Copyright (c) 1991,1990 Carnegie Mellon University 4*433d6423SLionel Sambuc * All Rights Reserved. 5*433d6423SLionel Sambuc * 6*433d6423SLionel Sambuc * Permission to use, copy, modify and distribute this software and its 7*433d6423SLionel Sambuc * documentation is hereby granted, provided that both the copyright 8*433d6423SLionel Sambuc * notice and this permission notice appear in all copies of the 9*433d6423SLionel Sambuc * software, derivative works or modified versions, and any portions 10*433d6423SLionel Sambuc * thereof, and that both notices appear in supporting documentation. 11*433d6423SLionel Sambuc * 12*433d6423SLionel Sambuc * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS 13*433d6423SLionel Sambuc * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR 14*433d6423SLionel Sambuc * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. 15*433d6423SLionel Sambuc * 16*433d6423SLionel Sambuc * Carnegie Mellon requests users of this software to return to 17*433d6423SLionel Sambuc * 18*433d6423SLionel Sambuc * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU 19*433d6423SLionel Sambuc * School of Computer Science 20*433d6423SLionel Sambuc * Carnegie Mellon University 21*433d6423SLionel Sambuc * Pittsburgh PA 15213-3890 22*433d6423SLionel Sambuc * 23*433d6423SLionel Sambuc * any improvements or extensions that they make and grant Carnegie the 24*433d6423SLionel Sambuc * rights to redistribute these changes. 25*433d6423SLionel Sambuc */ 26*433d6423SLionel Sambuc 27*433d6423SLionel Sambuc #ifndef _DDB_DB_ACCESS_H_ 28*433d6423SLionel Sambuc #define _DDB_DB_ACCESS_H_ 29*433d6423SLionel Sambuc 30*433d6423SLionel Sambuc /* 31*433d6423SLionel Sambuc * Author: David B. Golub, Carnegie Mellon University 32*433d6423SLionel Sambuc * Date: 7/90 33*433d6423SLionel Sambuc */ 34*433d6423SLionel Sambuc /* 35*433d6423SLionel Sambuc * Data access functions for debugger. 36*433d6423SLionel Sambuc */ 37*433d6423SLionel Sambuc db_expr_t db_get_value __P((db_addr_t addr, int size, 38*433d6423SLionel Sambuc boolean_t is_signed)); 39*433d6423SLionel Sambuc void db_put_value __P((db_addr_t addr, int size, db_expr_t value)); 40*433d6423SLionel Sambuc 41*433d6423SLionel Sambuc #endif /* !_DDB_DB_ACCESS_H_ */ 42