NetBSD/sys/ddb/db_variables.h

61 lines
2.1 KiB
C
Raw Normal View History

/* $NetBSD: db_variables.h,v 1.15 2007/02/22 04:38:06 matt Exp $ */
/*
1993-03-21 12:45:37 +03:00
* Mach Operating System
* Copyright (c) 1991,1990 Carnegie Mellon University
* All Rights Reserved.
*
1993-03-21 12:45:37 +03:00
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
1993-03-21 12:45:37 +03:00
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
1993-03-21 12:45:37 +03:00
* Carnegie Mellon requests users of this software to return to
*
1993-03-21 12:45:37 +03:00
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
1993-03-21 12:45:37 +03:00
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
#ifndef _DB_VARIABLES_H_
#define _DB_VARIABLES_H_
/*
* Debugger variables.
*/
struct db_variable {
2001-01-17 22:50:03 +03:00
const char *name; /* Name of variable */
long *valuep; /* value of variable */
1993-03-21 12:45:37 +03:00
/* function to call when reading/writing */
int (*fcn)(const struct db_variable *, db_expr_t *, int);
2005-06-01 16:25:27 +04:00
const char *modif;
1993-03-21 12:45:37 +03:00
#define DB_VAR_GET 0
#define DB_VAR_SET 1
};
#define FCN_NULL ((int (*)(const struct db_variable *, db_expr_t *, int))0)
1993-03-21 12:45:37 +03:00
2001-01-17 22:50:03 +03:00
extern const struct db_variable db_vars[]; /* debugger variables */
extern const struct db_variable * const db_evars;
2001-01-18 13:54:27 +03:00
extern const struct db_variable db_regs[]; /* machine registers */
extern const struct db_variable * const db_eregs;
1993-03-21 12:45:37 +03:00
int db_get_variable(db_expr_t *);
int db_set_variable(db_expr_t);
void db_read_variable(const struct db_variable *, db_expr_t *);
void db_write_variable(const struct db_variable *, db_expr_t *);
void db_set_cmd(db_expr_t, bool, db_expr_t, const char *);
1996-02-05 04:56:47 +03:00
1993-03-21 12:45:37 +03:00
#endif /* _DB_VARIABLES_H_ */