From: Corinna Vinschen <vinschen@redhat.com>
To: gdb-patches@sources.redhat.com
Subject: Re: [RFA] cli/cli-dump.c: Write dump always in binary mode on Cygwin
Date: Tue, 06 Aug 2002 01:10:00 -0000 [thread overview]
Message-ID: <20020806101017.Q3921@cygbert.vinschen.de> (raw)
In-Reply-To: <Pine.SUN.3.91.1020806074046.5586A-100000@is>
On Tue, Aug 06, 2002 at 07:42:47AM +0300, Eli Zaretskii wrote:
>
> On Mon, 5 Aug 2002, Michael Snyder wrote:
>
> > do we actually know of any environments
> > where the #if is strictly necessary?
>
> Since GDB requires ISO C, and "wb" is part of the ISO C spec, I think we
> can drop the #if. (Dependance on O_BINARY being defined is not very
> clean anyway, IMHO, since O_BINARY does not belong to `fopen'.)
Well, that changes the patch to:
2002-08-06 Corinna Vinschen <vinschen@redhat.com>
* cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
write dump file binary.
Index: cli/cli-dump.c
===================================================================
RCS file: /cvs/src/src/gdb/cli/cli-dump.c,v
retrieving revision 1.4
diff -u -p -r1.4 cli-dump.c
--- cli/cli-dump.c 24 May 2002 01:25:52 -0000 1.4
+++ cli/cli-dump.c 6 Aug 2002 08:08:27 -0000
@@ -442,7 +442,7 @@ add_dump_command (char *name, void (*fun
c->completer = filename_completer;
d = XMALLOC (struct dump_context);
d->func = func;
- d->mode = "w";
+ d->mode = "wb";
set_cmd_context (c, d);
c->func = call_dump_func;
@@ -450,7 +450,7 @@ add_dump_command (char *name, void (*fun
c->completer = filename_completer;
d = XMALLOC (struct dump_context);
d->func = func;
- d->mode = "a";
+ d->mode = "ab";
set_cmd_context (c, d);
c->func = call_dump_func;
Is that ok?
Corinna
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen@redhat.com
next prev parent reply other threads:[~2002-08-06 8:10 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-08-05 3:27 Corinna Vinschen
2002-08-05 5:30 ` Andreas Schwab
2002-08-05 16:10 ` Michael Snyder
2002-08-05 21:45 ` Eli Zaretskii
2002-08-06 1:10 ` Corinna Vinschen [this message]
2002-08-06 9:12 ` Eli Zaretskii
2002-08-07 1:52 ` Corinna Vinschen
2002-08-06 7:02 ` Andrew Cagney
2002-08-07 8:45 ` Richard Earnshaw
2002-08-07 10:55 ` Andrew Cagney
2002-08-07 22:09 ` Eli Zaretskii
2002-08-08 9:57 ` Andrew Cagney
2002-08-09 2:19 ` [RFA]: Change all fopen modes to binary in cli-dump.c [was Re: [RFA] cli/cli-dump.c: Write dump always in binary mode on Cygwin] Corinna Vinschen
2002-08-09 7:46 ` Andrew Cagney
2002-08-09 9:36 ` Corinna Vinschen
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=20020806101017.Q3921@cygbert.vinschen.de \
--to=vinschen@redhat.com \
--cc=gdb-patches@sources.redhat.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