From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11797 invoked by alias); 11 Aug 2016 17:41:40 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 10801 invoked by uid 89); 11 Aug 2016 17:41:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Terminal X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:41:28 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C74D23B71B; Thu, 11 Aug 2016 17:41:27 +0000 (UTC) Received: from [127.0.0.1] (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u7BHfNwj029186; Thu, 11 Aug 2016 13:41:23 -0400 Subject: Re: Is there a way to unset inferior-tty? To: Bob Rossi , Marc Khouzam References: <302246af-a394-4a76-5223-5cac924bda9a@redhat.com> <9560791fd070c79f7ab54e5e7b63d433@simark.ca> <20160726184303.GB989@xubuntu.brasko.net> <20160726193231.GD989@xubuntu.brasko.net> <20160811142233.GB7851@xubuntu.brasko.net> Cc: Simon Marchi , "gdb@sourceware.org" From: Pedro Alves Message-ID: <8a3af4bc-7789-6fac-7876-f47187f492d6@redhat.com> Date: Thu, 11 Aug 2016 17:41:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <20160811142233.GB7851@xubuntu.brasko.net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2016-08/txt/msg00024.txt.bz2 On 08/11/2016 03:22 PM, Bob Rossi wrote: > On Tue, Jul 26, 2016 at 03:32:31PM -0400, Bob Rossi wrote: >> I didn't know, until today, that multiple inferiors could exist! >> Does GDB even support one /tty per inferior in that case? > > Could anyone elaborate on how gdb handles multiple inferiors with the > /tty command, > https://sourceware.org/gdb/onlinedocs/gdb/Input_002fOutput.html > > It doesn't look like you can set a tty per inferior, but maybe I'm > wrong. You definitely can: (gdb) show inferior-tty Terminal for future runs of program being debugged is "". (gdb) tty tty1 (gdb) show inferior-tty Terminal for future runs of program being debugged is "tty1". (gdb) add-inferior Added inferior 2 (gdb) inferior 2 [Switching to inferior 2 [] ()] (gdb) show inferior-tty Terminal for future runs of program being debugged is "tty2". (gdb) inferior 1 [Switching to inferior 1 [] ()] (gdb) show inferior-tty Terminal for future runs of program being debugged is "tty1". Thanks, Pedro Alves