From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 95494 invoked by alias); 18 Aug 2019 03:36:52 -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 95443 invoked by uid 89); 18 Aug 2019 03:36:51 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mail-lf1-f50.google.com Received: from mail-lf1-f50.google.com (HELO mail-lf1-f50.google.com) (209.85.167.50) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 18 Aug 2019 03:36:50 +0000 Received: by mail-lf1-f50.google.com with SMTP id h28so6622147lfj.5 for ; Sat, 17 Aug 2019 20:36:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=tSxqM//FSPfv0R1iIlfiUzibZcUkEHTioUDGDFcT0zw=; b=XtIIPzbRjZlPzhUyXXC8cQXZP0EuyJiPt+C0806vtJVWSyrAroZPQRvPESJkp5sZ5E GKFheqEiXQaPrTI21Fkk9vytG9dJd4kKBxr5roUnsEwLuvj2tvoiX0gy0NeHdEsz4uhN nhCwgD//NN6d62Qz0ws5GNMVJxY6k37k1hDcmLYHqG6oQJLYlelrP4eKch94n1IXHf2l oUJeet4tKNcXUGtSMpGrvt+5DL2ahpehtB7IFpc/balRg9CEr811Eds29vDPpqDOlHUz SgiyP0MIXcINhk8K4oGL01E9v9xIAFWCcmIUdSqY+1We1ibUgoghNajrOAscRC46Simz o3FA== MIME-Version: 1.0 From: William Tambe Date: Sun, 18 Aug 2019 03:36:00 -0000 Message-ID: Subject: gdb command "next" wrongly working as command "step" To: gdb@sourceware.org Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2019-08/txt/msg00020.txt.bz2 I having an issue where the gdb command "next" wrongly work as the command "step", in that it will step-into functions instead of stepping-over functions. To support single stepping I have implemnted set_gdbarch_software_single_step(). Is there another function that I need to implement to support stepping-over functions ?