diff options
author | Tom Tromey <tromey@redhat.com> | 2012-11-09 19:57:55 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-11-09 19:57:55 +0000 |
commit | 20a97a84f9d1786a4e3c93e930ef62a0ab869888 (patch) | |
tree | 8075ffe551034dcd02815c2797130e187cf86e82 /gdb/record.c | |
parent | f1200fa1efbe409ce1282838868b614d5e70b4ac (diff) | |
download | gdb-20a97a84f9d1786a4e3c93e930ef62a0ab869888.tar.gz |
* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch.
* gdbarch.c, gdbarch.h: Rebuild.
* ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
procfs.c, progspace.c, ravenscar-thread.c, record.c,
remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
target-descriptions.c, target.c, target.h, tracepoint.c,
windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
python/py-inferior.c, python/python.c: Update.
Diffstat (limited to 'gdb/record.c')
-rw-r--r-- | gdb/record.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/record.c b/gdb/record.c index c98ed321b98..08ffb687e2e 100644 --- a/gdb/record.c +++ b/gdb/record.c @@ -512,14 +512,14 @@ record_arch_list_add_mem (CORE_ADDR addr, int len) fprintf_unfiltered (gdb_stdlog, "Process record: add mem addr = %s len = %d to " "record list.\n", - paddress (target_gdbarch, addr), len); + paddress (target_gdbarch (), addr), len); if (!addr) /* FIXME: Why? Some arch must permit it... */ return 0; rec = record_mem_alloc (addr, len); - if (record_read_memory (target_gdbarch, addr, record_get_loc (rec), len)) + if (record_read_memory (target_gdbarch (), addr, record_get_loc (rec), len)) { record_mem_release (rec); return -1; @@ -874,7 +874,7 @@ record_open_1 (char *name, int from_tty) error (_("Process record target can't debug inferior in non-stop mode " "(non-stop).")); - if (!gdbarch_process_record_p (target_gdbarch)) + if (!gdbarch_process_record_p (target_gdbarch ())) error (_("Process record: the current architecture doesn't support " "record function.")); @@ -1686,7 +1686,7 @@ record_xfer_partial (struct target_ops *ops, enum target_object object, if (!query (_("Because GDB is in replay mode, writing to memory " "will make the execution log unusable from this " "point onward. Write memory at address %s?"), - paddress (target_gdbarch, offset))) + paddress (target_gdbarch (), offset))) error (_("Process record canceled the operation.")); /* Destroy the record from here forward. */ |