From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 59242 invoked by alias); 18 Aug 2019 09:06:02 -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 59231 invoked by uid 89); 18 Aug 2019 09:06:02 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy= 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; Sun, 18 Aug 2019 09:06:01 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id DC598307D91F; Sun, 18 Aug 2019 09:05:59 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-117-1.ams2.redhat.com [10.36.117.1]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 27C141CF; Sun, 18 Aug 2019 09:05:58 +0000 (UTC) Date: Sun, 18 Aug 2019 09:06:00 -0000 From: Jan Kratochvil To: William Tambe Cc: gdb@sourceware.org Subject: Re: gdb command "next" wrongly working as command "step" Message-ID: <20190818090556.GA19968@host1.jankratochvil.net> References: <20190818041556.GA11323@host1.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.12.1 (2019-06-15) X-SW-Source: 2019-08/txt/msg00023.txt.bz2 On Sun, 18 Aug 2019 10:31:54 +0200, William Tambe wrote: > Can I have suggestions of locations within the gdb code where I could > put breakpoints to trace where the issue I am having is occurring ? Check what "set debug infrun 1" says and grep the sources for the displayed messages. Jan