From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18100 invoked by alias); 2 Dec 2011 20:52:23 -0000 Received: (qmail 18092 invoked by uid 22791); 2 Dec 2011 20:52:23 -0000 X-SWARE-Spam-Status: No, hits=-7.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 02 Dec 2011 20:52:10 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id pB2Kq6Oa004386 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 2 Dec 2011 15:52:06 -0500 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id pB2Kq5W9010817; Fri, 2 Dec 2011 15:52:05 -0500 Received: from barimba (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id pB2Kq31q009665; Fri, 2 Dec 2011 15:52:03 -0500 From: Tom Tromey To: Marc Khouzam Cc: "'Stan Shebs'" , "'gdb-patches\@sourceware.org'" Subject: Re: RFC: Introduce remote console for CLI interpreter via telnet References: <4EC4ECB5.8090107@mentor.com> <20111201230711.GB2777@adacore.com> <4ED81749.8000305@earthlink.net> Date: Fri, 02 Dec 2011 20:52:00 -0000 In-Reply-To: (Marc Khouzam's message of "Fri, 2 Dec 2011 15:18:33 -0500") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain 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-12/txt/msg00054.txt.bz2 >>>>> "Marc" == Marc Khouzam writes: Marc> I'm actually hoping to use this feature directly from Eclipse, to Marc> provide a full-fledge GDB-console within Eclipse, with Marc> - prompt Marc> - command completion Marc> - command history I don't think it will do completion or history. It doesn't use readline. It seems trivial to support these from Eclipse though. You can send plain gdb commands and you can use the complete command to do completion. History you can implement in your UI. I agree about the prompt. Marc> - synchronization with the Eclipse UI What does this mean? Tom