+2010-03-30 Mike Frysinger <vapier@gentoo.org>
+
+ * sim-watch.c (watchpoint_type_to_str): Add const to return.
+ (interrupt_nr_to_str): Likewise.
+ (default_interrupt_names): Add const to pointer type.
+ (sim_watchpoint_install): Add const to prefix.
+ * sim-watch.h (struct _sim_watchpoints): Add const to interrupt_names.
+
2010-03-30 Mike Frysinger <vapier@gentoo.org>
* sim-core.c (sim_core_read_buffer): Change raddr to address_word.
return status;
}
-static char *
+static const char *
watchpoint_type_to_str (SIM_DESC sd,
watchpoint_type type)
{
return NULL;
}
-static char *
+static const char *
interrupt_nr_to_str (SIM_DESC sd,
int interrupt_nr)
{
{ {NULL, no_argument, NULL, 0}, '\0', NULL, NULL, NULL }
};
-static char *default_interrupt_names[] = { "int", 0, };
+static const char *default_interrupt_names[] = { "int", 0, };
/* adjust first few entries so that they contain real
documentation, the first entry includes a list of actions. */
{
- char *prefix =
+ const char *prefix =
"Watch the simulator, take ACTION in COUNT cycles (`+' for every COUNT cycles), ACTION is";
char *doc;
int len = strlen (prefix) + 1;
/* FIXME: can this be done better? Look at the PPC's interrupt
mechanism and table for a rough idea of where it will go next */
int nr_interrupts;
- char **interrupt_names;
+ const char **interrupt_names;
/* active watchpoints */
int last_point_nr;