From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15960 invoked by alias); 16 Aug 2011 14:10:30 -0000 Received: (qmail 15950 invoked by uid 22791); 16 Aug 2011 14:10:29 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM X-Spam-Check-By: sourceware.org Received: from mail-ey0-f169.google.com (HELO mail-ey0-f169.google.com) (209.85.215.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 16 Aug 2011 14:09:57 +0000 Received: by eye22 with SMTP id 22so3782520eye.0 for ; Tue, 16 Aug 2011 07:09:56 -0700 (PDT) MIME-Version: 1.0 Received: by 10.213.26.15 with SMTP id b15mr1551612ebc.74.1313503796465; Tue, 16 Aug 2011 07:09:56 -0700 (PDT) Received: by 10.213.33.142 with HTTP; Tue, 16 Aug 2011 07:09:56 -0700 (PDT) In-Reply-To: <83bovptr1u.fsf@gnu.org> References: <20110813205053.GB22058@host1.jankratochvil.net> <20110814121407.GA29236@host1.jankratochvil.net> <83y5ywulun.fsf@gnu.org> <20110814170136.GA26819@host1.jankratochvil.net> <83sjp3vkze.fsf@gnu.org> <20110814195523.GA7588@host1.jankratochvil.net> <83bovptr1u.fsf@gnu.org> Date: Tue, 16 Aug 2011 14:10:00 -0000 Message-ID: Subject: Re: [PATCH] An implementation of pipe to make I/O communication between gdb and shell. [MinGW question] From: Abhijit Halder To: Eli Zaretskii Cc: jan.kratochvil@redhat.com, sergiodj@redhat.com, tromey@redhat.com, pedro@codesourcery.com, gdb-patches@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-08/txt/msg00332.txt.bz2 On Tue, Aug 16, 2011 at 7:08 PM, Eli Zaretskii wrote: >> Date: Tue, 16 Aug 2011 18:15:19 +0530 >> From: Abhijit Halder >> Cc: Eli Zaretskii , sergiodj@redhat.com, tromey@redhat.com, >> =A0 =A0 =A0 pedro@codesourcery.com, gdb-patches@sourceware.org >> >> --- src/gdb/NEWS =A0 =A0 =A02011-08-14 07:27:51.582233000 +0530 >> +++ dst/gdb/NEWS =A0 =A0 =A02011-08-14 07:50:38.562234498 +0530 >> @@ -64,6 +64,9 @@ >> >> =A0* New commands "info macros", and "info definitions" have been added. >> >> +* New command "pipe" has been added to make GDB command output availabl= e to the >> + =A0shell for processing. >> + >> =A0* Changed commands > > This part is okay. > >> +void >> +_initialize_pipe (void) >> +{ >> + =A0add_cmd ("pipe", no_class, pipe_command, _("\ >> +Create pipe to pass gdb-command output to the shell for processing.\n\ >> +Arguments are a delimiter, followed by a gdb-command, then the same del= imiter \ >> +again and finally a shell-command."), > > This doc string should say something about what can be the delimiter. > > What about the manual? =A0(Apologies if I already reviewed that part: > this has been a very long thread.) I have not yet got a chance to work on document part. I am currently working on it. > > Thanks. >