static void
create_sals_from_location_default (struct event_location *location,
- struct linespec_result *canonical,
- enum bptype type_wanted);
+ struct linespec_result *canonical);
static void create_breakpoints_sal (struct gdbarch *,
struct linespec_result *,
static void bkpt_probe_create_sals_from_location
(struct event_location *location,
- struct linespec_result *canonical,
- enum bptype type_wanted);
+ struct linespec_result *canonical);
static void tracepoint_probe_create_sals_from_location
(struct event_location *location,
- struct linespec_result *canonical,
- enum bptype type_wanted);
+ struct linespec_result *canonical);
const struct breakpoint_ops base_breakpoint_ops =
{
try
{
- ops->create_sals_from_location (location, &canonical, type_wanted);
+ ops->create_sals_from_location (location, &canonical);
}
catch (const gdb_exception_error &e)
{
static void
bkpt_probe_create_sals_from_location (struct event_location *location,
- struct linespec_result *canonical,
- enum bptype type_wanted)
+ struct linespec_result *canonical)
+
{
struct linespec_sals lsal;
static void
tracepoint_probe_create_sals_from_location
(struct event_location *location,
- struct linespec_result *canonical,
- enum bptype type_wanted)
+ struct linespec_result *canonical)
{
/* We use the same method for breakpoint on probes. */
- bkpt_probe_create_sals_from_location (location, canonical, type_wanted);
+ bkpt_probe_create_sals_from_location (location, canonical);
}
void
static void
strace_marker_create_sals_from_location (struct event_location *location,
- struct linespec_result *canonical,
- enum bptype type_wanted)
+ struct linespec_result *canonical)
{
struct linespec_sals lsal;
const char *arg_start, *arg;
static void
create_sals_from_location_default (struct event_location *location,
- struct linespec_result *canonical,
- enum bptype type_wanted)
+ struct linespec_result *canonical)
{
parse_breakpoint_sals (location, canonical);
}