From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id LBfRHv9KMmHwEgAAWB0awg (envelope-from ) for ; Fri, 03 Sep 2021 12:19:11 -0400 Received: by simark.ca (Postfix, from userid 112) id 6138C1EE22; Fri, 3 Sep 2021 12:19:11 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HK_RANDOM_FROM,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 909771EDDB for ; Fri, 3 Sep 2021 12:19:10 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id EABFD3846403 for ; Fri, 3 Sep 2021 16:19:09 +0000 (GMT) Received: from cp165172.hpdns.net (cp165172.hpdns.net [91.238.165.172]) by sourceware.org (Postfix) with ESMTPS id 4DC50384840E for ; Fri, 3 Sep 2021 16:06:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4DC50384840E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=dyxyl.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=dyxyl.com DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=dyxyl.com; s=default; h=Content-Type:MIME-Version:Message-ID:Date:References:In-Reply-To :Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=nh83ItCuBEhSdkLjH/RRJvNx9Z9xwGET7+grmdg3HFU=; b=ofBHeSwX2Lhg9PKrMOLIxPUfno Kgc90BreTgTNGszLwbBjBMe806u5i/Hsr8jVXvl5Tkn7YIrgPTqAItmfVZilim3EIgIiBcNqoQOl1 /avTu7wDc84F1FUKMDZOg2hp+XRWyWG86jMCri6jjcVgsZP7c0Y3cm/ZT0/kCaQYK4xQ=; Received: from cpc92880-cmbg19-2-0-cust615.5-4.cable.virginm.net ([82.27.106.104]:36564 helo=localhost.localdomain) by cp165172.hpdns.net with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1mMBiJ-001r6n-4U; Fri, 03 Sep 2021 17:06:43 +0100 Received: by localhost.localdomain (Postfix, from userid 597) id C422E6019A; Fri, 3 Sep 2021 17:06:42 +0100 (BST) From: Martin Simmons To: Alexander Miloslavskiy Subject: Re: Disambiguating symbols by module In-Reply-To: <4e230740-b655-bdc3-dbe0-b1ed518d1a26@gmail.com> (message from Alexander Miloslavskiy via Gdb on Fri, 3 Sep 2021 17:57:42 +0300) References: <4e230740-b655-bdc3-dbe0-b1ed518d1a26@gmail.com> Date: Fri, 03 Sep 2021 17:06:42 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-cPanel-MailScanner-Information: Please contact the ISP for more information X-cPanel-MailScanner-ID: 1mMBiJ-001r6n-4U X-cPanel-MailScanner: Found to be clean X-cPanel-MailScanner-SpamCheck: X-cPanel-MailScanner-From: qqxnjvamvxwx@dyxyl.com X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cp165172.hpdns.net X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - dyxyl.com X-Get-Message-Sender-Via: cp165172.hpdns.net: authenticated_id: dyxyl/from_h X-Authenticated-Sender: cp165172.hpdns.net: qqxnjvamvxwx@dyxyl.com X-Source: X-Source-Args: X-Source-Dir: X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: gdb@sourceware.org Errors-To: gdb-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb" >>>>> On Fri, 3 Sep 2021 17:57:42 +0300, Alexander Miloslavskiy via Gdb said: > > Right, I think that a startup python script could work, if there are no > better solutions. Thanks! If the short function name is just for convenience and you can rename it to something longer, then you can define a short-named user command to call it define callps call (void)the_unique_ps_function() end __Martin