mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
gdb/
* spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the create_breakpoint call, adjust the parameters.
This commit is contained in:
parent
f4bacdc042
commit
d8c09fb595
@ -1,3 +1,8 @@
|
||||
2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
|
||||
create_breakpoint call, adjust the parameters.
|
||||
|
||||
2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
Chandru <chandru@in.ibm.com>
|
||||
|
||||
|
@ -1863,11 +1863,13 @@ spu_catch_start (struct objfile *objfile)
|
||||
/* Use a numerical address for the set_breakpoint command to avoid having
|
||||
the breakpoint re-set incorrectly. */
|
||||
xsnprintf (buf, sizeof buf, "*%s", core_addr_to_string (pc));
|
||||
set_breakpoint (get_objfile_arch (objfile),
|
||||
buf, NULL /* condition */,
|
||||
0 /* hardwareflag */, 1 /* tempflag */,
|
||||
-1 /* thread */, 0 /* ignore_count */,
|
||||
0 /* pending */, 1 /* enabled */);
|
||||
create_breakpoint (get_objfile_arch (objfile), buf /* arg */,
|
||||
NULL /* cond_string */, -1 /* thread */,
|
||||
0 /* parse_condition_and_thread */, 1 /* tempflag */,
|
||||
0 /* hardwareflag */, 0 /* traceflag */,
|
||||
0 /* ignore_count */,
|
||||
AUTO_BOOLEAN_FALSE /* pending_break_support */,
|
||||
NULL /* ops */, 0 /* from_tty */, 1 /* enabled */);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user