Add variables needed by hardware watchpoint support.

Submitted by:	tmm
This commit is contained in:
Jake Burkholder 2001-08-20 23:50:48 +00:00
parent 11676d49ba
commit ef3df3f0fe
2 changed files with 12 additions and 0 deletions

View File

@ -59,6 +59,12 @@ struct globaldata {
#endif
struct intr_queue *gd_iq;
struct intr_vector *gd_ivt;
/* Watch point support. */
u_int gd_wp_insn;
u_long gd_wp_pstate;
u_long gd_wp_va;
int gd_wp_mask;
};
#endif /* _KERNEL */

View File

@ -59,6 +59,12 @@ struct globaldata {
#endif
struct intr_queue *gd_iq;
struct intr_vector *gd_ivt;
/* Watch point support. */
u_int gd_wp_insn;
u_long gd_wp_pstate;
u_long gd_wp_va;
int gd_wp_mask;
};
#endif /* _KERNEL */