mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
Rename parameter of create_ada_exception_catchpoint
create_ada_exception_catchpoint has a parameter named "disabled", but both its callers and callees use it to mean "enabled". This is confusing, so this patch renames the parameter.
This commit is contained in:
parent
16b84b6599
commit
12d67b37cd
@ -12783,7 +12783,7 @@ create_ada_exception_catchpoint (struct gdbarch *gdbarch,
|
|||||||
const std::string &excep_string,
|
const std::string &excep_string,
|
||||||
const std::string &cond_string,
|
const std::string &cond_string,
|
||||||
int tempflag,
|
int tempflag,
|
||||||
int disabled,
|
int enabled,
|
||||||
int from_tty)
|
int from_tty)
|
||||||
{
|
{
|
||||||
std::string addr_string;
|
std::string addr_string;
|
||||||
@ -12791,7 +12791,7 @@ create_ada_exception_catchpoint (struct gdbarch *gdbarch,
|
|||||||
|
|
||||||
std::unique_ptr<ada_catchpoint> c
|
std::unique_ptr<ada_catchpoint> c
|
||||||
(new ada_catchpoint (gdbarch, ex_kind, sal, addr_string.c_str (),
|
(new ada_catchpoint (gdbarch, ex_kind, sal, addr_string.c_str (),
|
||||||
tempflag, disabled, from_tty));
|
tempflag, enabled, from_tty));
|
||||||
c->excep_string = excep_string;
|
c->excep_string = excep_string;
|
||||||
create_excep_cond_exprs (c.get (), ex_kind);
|
create_excep_cond_exprs (c.get (), ex_kind);
|
||||||
if (!cond_string.empty ())
|
if (!cond_string.empty ())
|
||||||
|
@ -342,7 +342,7 @@ extern const char *ada_main_name ();
|
|||||||
extern void create_ada_exception_catchpoint
|
extern void create_ada_exception_catchpoint
|
||||||
(struct gdbarch *gdbarch, enum ada_exception_catchpoint_kind ex_kind,
|
(struct gdbarch *gdbarch, enum ada_exception_catchpoint_kind ex_kind,
|
||||||
const std::string &excep_string, const std::string &cond_string, int tempflag,
|
const std::string &excep_string, const std::string &cond_string, int tempflag,
|
||||||
int disabled, int from_tty);
|
int enabled, int from_tty);
|
||||||
|
|
||||||
/* Return true if BP is an Ada catchpoint. */
|
/* Return true if BP is an Ada catchpoint. */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user