/*-1* SPDX-License-Identifier: MIT-CMU2*3* Mach Operating System4* Copyright (c) 1991,1990 Carnegie Mellon University5* All Rights Reserved.6*7* Permission to use, copy, modify and distribute this software and its8* documentation is hereby granted, provided that both the copyright9* notice and this permission notice appear in all copies of the10* software, derivative works or modified versions, and any portions11* thereof, and that both notices appear in supporting documentation.12*13* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS14* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR15* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.16*17* Carnegie Mellon requests users of this software to return to18*19* Software Distribution Coordinator or [email protected]20* School of Computer Science21* Carnegie Mellon University22* Pittsburgh PA 15213-389023*24* any improvements or extensions that they make and grant Carnegie the25* rights to redistribute these changes.26*/2728#ifndef _DDB_DB_ACCESS_H_29#define _DDB_DB_ACCESS_H_3031/*32* Author: David B. Golub, Carnegie Mellon University33* Date: 7/9034*/35/*36* Data access functions for debugger.37*/38db_expr_t db_get_value(db_addr_t addr, int size, bool is_signed);39void db_put_value(db_addr_t addr, int size, db_expr_t value);4041#endif /* !_DDB_DB_ACCESS_H_ */424344