From: Paul Pluzhnikov <ppluzhnikov@google.com>
To: Michael Snyder <msnyder@vmware.com>
Cc: Hui Zhu <teawater@gmail.com>, Eli Zaretskii <eliz@gnu.org>,
"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: Re: [RFA, 3 of 3] save/restore process record, part 3 (save/restore)
Date: Fri, 23 Oct 2009 01:05:00 -0000 [thread overview]
Message-ID: <8ac60eac0910221803p2b45453bu17473aa7e9453a60@mail.gmail.com> (raw)
In-Reply-To: <8ac60eac0910221745t3ef6eb56ra6609086ad07f23@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 426 bytes --]
On Thu, Oct 22, 2009 at 5:45 PM, Paul Pluzhnikov <ppluzhnikov@google.com> wrote:
> More problems: on Linux/x86_64:
>
> ../../src/gdb/record.c:2062: warning: format '%d' expects type 'int',
> but argument 3 has type 'long unsigned int'
I've committed attached patch as obvious.
Thanks,
--
Paul Pluzhnikov
2009-10-22 Paul Pluzhnikov <ppluzhnikov@google.com>
* record.c (record_restore, cmd_record_save): Fix warnings.
[-- Attachment #2: gdb-fixup-20091022.txt --]
[-- Type: text/plain, Size: 3024 bytes --]
Index: record.c
===================================================================
RCS file: /cvs/src/src/gdb/record.c,v
retrieving revision 1.30
diff -u -p -u -r1.30 record.c
--- record.c 22 Oct 2009 19:36:06 -0000 1.30
+++ record.c 23 Oct 2009 00:58:23 -0000
@@ -2056,9 +2056,9 @@ record_restore (void)
if (record_debug)
printf_filtered ("\
- Reading register %d (1 plus %d plus %d bytes)\n",
+ Reading register %d (1 plus %lu plus %d bytes)\n",
rec->u.reg.num,
- sizeof (regnum),
+ (unsigned long) sizeof (regnum),
rec->u.reg.len);
break;
@@ -2081,11 +2081,11 @@ record_restore (void)
if (record_debug)
printf_filtered ("\
- Reading memory %s (1 plus %d plus %d plus %d bytes)\n",
+ Reading memory %s (1 plus %lu plus %lu plus %d bytes)\n",
paddress (get_current_arch (),
rec->u.mem.addr),
- sizeof (addr),
- sizeof (len),
+ (unsigned long) sizeof (addr),
+ (unsigned long) sizeof (len),
rec->u.mem.len);
break;
@@ -2107,9 +2107,9 @@ record_restore (void)
record_insn_count = count + 1;
if (record_debug)
printf_filtered ("\
- Reading record_end (1 + %d + %d bytes), offset == %s\n",
- sizeof (signal),
- sizeof (count),
+ Reading record_end (1 + %lu + %lu bytes), offset == %s\n",
+ (unsigned long) sizeof (signal),
+ (unsigned long) sizeof (count),
paddress (get_current_arch (),
bfd_offset));
break;
@@ -2308,9 +2308,9 @@ cmd_record_save (char *args, int from_tt
case record_reg: /* reg */
if (record_debug)
printf_filtered ("\
- Writing register %d (1 plus %d plus %d bytes)\n",
+ Writing register %d (1 plus %lu plus %d bytes)\n",
record_list->u.reg.num,
- sizeof (regnum),
+ (unsigned long) sizeof (regnum),
record_list->u.reg.len);
/* Write regnum. */
@@ -2326,11 +2326,11 @@ cmd_record_save (char *args, int from_tt
case record_mem: /* mem */
if (record_debug)
printf_filtered ("\
- Writing memory %s (1 plus %d plus %d plus %d bytes)\n",
+ Writing memory %s (1 plus %lu plus %lu plus %d bytes)\n",
paddress (gdbarch,
record_list->u.mem.addr),
- sizeof (addr),
- sizeof (len),
+ (unsigned long) sizeof (addr),
+ (unsigned long) sizeof (len),
record_list->u.mem.len);
/* Write memlen. */
@@ -2350,9 +2350,9 @@ cmd_record_save (char *args, int from_tt
case record_end:
if (record_debug)
printf_filtered ("\
- Writing record_end (1 + %d + %d bytes)\n",
- sizeof (signal),
- sizeof (count));
+ Writing record_end (1 + %lu + %lu bytes)\n",
+ (unsigned long) sizeof (signal),
+ (unsigned long) sizeof (count));
/* Write signal value. */
signal = netorder32 (record_list->u.end.sigval);
bfdcore_write (obfd, osec, &signal,
next prev parent reply other threads:[~2009-10-23 1:05 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-17 1:32 Michael Snyder
2009-10-17 8:31 ` Eli Zaretskii
2009-10-17 18:42 ` Michael Snyder
2009-10-17 20:11 ` Eli Zaretskii
2009-10-17 22:19 ` Michael Snyder
2009-10-18 2:23 ` Hui Zhu
2009-10-18 3:59 ` Michael Snyder
2009-10-18 4:06 ` Eli Zaretskii
2009-10-18 4:10 ` Michael Snyder
2009-10-19 4:34 ` Hui Zhu
2009-10-19 18:00 ` Michael Snyder
2009-10-20 2:47 ` Hui Zhu
2009-10-20 20:03 ` Michael Snyder
2009-10-20 20:05 ` Michael Snyder
2009-10-21 2:36 ` Hui Zhu
2009-10-22 19:42 ` Michael Snyder
2009-10-22 20:40 ` Paul Pluzhnikov
2009-10-22 21:00 ` Michael Snyder
2009-10-22 21:25 ` Paul Pluzhnikov
2009-10-23 0:45 ` Paul Pluzhnikov
2009-10-23 1:05 ` Paul Pluzhnikov [this message]
2009-10-23 5:35 ` Hui Zhu
2009-10-23 8:52 ` Pierre Muller
2009-10-23 10:08 ` Eli Zaretskii
2009-10-23 14:42 ` Hui Zhu
2009-10-23 14:54 ` Pedro Alves
2009-10-31 14:57 ` Pedro Alves
2009-11-01 9:54 ` Hui Zhu
2009-10-23 14:58 ` Pedro Alves
2009-10-23 14:46 ` Andreas Schwab
2009-10-23 14:55 ` Eli Zaretskii
2009-10-23 15:35 ` Andreas Schwab
2009-10-23 15:48 ` Eli Zaretskii
2009-10-23 16:31 ` Andreas Schwab
2009-10-23 15:09 ` Pierre Muller
2009-10-23 5:35 ` Hui Zhu
2009-10-23 15:56 ` Michael Snyder
2009-10-23 16:01 ` Michael Snyder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8ac60eac0910221803p2b45453bu17473aa7e9453a60@mail.gmail.com \
--to=ppluzhnikov@google.com \
--cc=eliz@gnu.org \
--cc=gdb-patches@sourceware.org \
--cc=msnyder@vmware.com \
--cc=teawater@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox