From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 75120 invoked by alias); 4 May 2019 21:57:41 -0000 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 Received: (qmail 75112 invoked by uid 89); 4 May 2019 21:57:41 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-9.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.1 spammy=backtraces, HContent-Transfer-Encoding:8bit X-HELO: mailsec111.isp.belgacom.be Received: from mailsec111.isp.belgacom.be (HELO mailsec111.isp.belgacom.be) (195.238.20.107) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 04 May 2019 21:57:39 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=skynet.be; i=@skynet.be; q=dns/txt; s=securemail; t=1557007059; x=1588543059; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=c3Apj9nIDj9hmAEM2m4sgb70XS9Bj6s9OEj2FykiK/Y=; b=Rf25LpPstBq/hnOpPd0A8vY5vEJxJGYZzt4ISM/USdV6PGs4atVuP92J h6CkDvHlKSehHgByW7toVfAaSfDI5w==; Received: from 59.151-129-109.adsl-dyn.isp.belgacom.be (HELO md.home) ([109.129.151.59]) by relay.skynet.be with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 04 May 2019 23:55:49 +0200 From: Philippe Waroquiers To: gdb-patches@sourceware.org Subject: [RFA 0/3] Better control about frame information to print. Date: Sat, 04 May 2019 21:57:00 -0000 Message-Id: <20190504215538.29821-1-philippe.waroquiers@skynet.be> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-05/txt/msg00151.txt.bz2 When printing big stacktraces having a lot of functions with a lot of arguments, it can be handy to see a lot less information in the printed frames. With the new settings, it is possible to have backtraces such as: (gdb) bt #0 break_me () #1 call_me (...) #2 main () (gdb) that are only showing the level, the function name and the presence of arguments.