NetBSD/sys/ddb/db_variables.h

61 lines
2.1 KiB
C
Raw Normal View History

2001-01-17 22:50:03 +03:00
/* $NetBSD: db_variables.h,v 1.9 2001/01/17 19:50:04 jdolecek Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Mach Operating System
* Copyright (c) 1991,1990 Carnegie Mellon University
* All Rights Reserved.
*
* 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.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* 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 */
2001-01-17 22:50:03 +03:00
int (*fcn) __P((const struct db_variable *, db_expr_t *, int));
1993-03-21 12:45:37 +03:00
#define DB_VAR_GET 0
#define DB_VAR_SET 1
};
2001-01-17 22:50:03 +03:00
#define FCN_NULL ((int (*) __P((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;
1993-03-21 12:45:37 +03:00
extern struct db_variable db_regs[]; /* machine registers */
extern struct db_variable *db_eregs;
2001-01-17 22:50:03 +03:00
int db_find_variable __P((const struct db_variable **));
1996-02-05 04:56:47 +03:00
int db_get_variable __P((db_expr_t *));
int db_set_variable __P((db_expr_t));
2001-01-17 22:50:03 +03:00
void db_read_variable __P((const struct db_variable *, db_expr_t *));
void db_write_variable __P((const struct db_variable *, db_expr_t *));
1996-02-05 04:56:47 +03:00
void db_set_cmd __P((db_expr_t, int, db_expr_t, char *));
1993-03-21 12:45:37 +03:00
#endif /* _DB_VARIABLES_H_ */