gdb: pass more const target_waitstatus by reference
While working on target_waitstatus changes, I noticed a few places where const target_waitstatus objects could be passed by reference instead of by pointers. And in some cases, places where a target_waitstatus could be passed as const, but was not. Convert them as much as possible. Change-Id: Ied552d464be5d5b87489913b95f9720a5ad50c5a
This commit is contained in:
parent
06de25b7af
commit
c272a98cbf
10 changed files with 124 additions and 125 deletions
|
@ -143,7 +143,7 @@ remove_catch_syscall (struct bp_location *bl, enum remove_bp_reason reason)
|
|||
static int
|
||||
breakpoint_hit_catch_syscall (const struct bp_location *bl,
|
||||
const address_space *aspace, CORE_ADDR bp_addr,
|
||||
const struct target_waitstatus *ws)
|
||||
const target_waitstatus &ws)
|
||||
{
|
||||
/* We must check if we are catching specific syscalls in this
|
||||
breakpoint. If we are, then we must guarantee that the called
|
||||
|
@ -152,11 +152,11 @@ breakpoint_hit_catch_syscall (const struct bp_location *bl,
|
|||
const struct syscall_catchpoint *c
|
||||
= (const struct syscall_catchpoint *) bl->owner;
|
||||
|
||||
if (ws->kind () != TARGET_WAITKIND_SYSCALL_ENTRY
|
||||
&& ws->kind () != TARGET_WAITKIND_SYSCALL_RETURN)
|
||||
if (ws.kind () != TARGET_WAITKIND_SYSCALL_ENTRY
|
||||
&& ws.kind () != TARGET_WAITKIND_SYSCALL_RETURN)
|
||||
return 0;
|
||||
|
||||
syscall_number = ws->syscall_number ();
|
||||
syscall_number = ws.syscall_number ();
|
||||
|
||||
/* Now, checking if the syscall is the same. */
|
||||
if (!c->syscalls_to_be_caught.empty ())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue