From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 Cc: ratmice@gmail.com,gdb@sourceware.org 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-Spam-Status: No, score=-1.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, HK_RANDOM_ENVFROM, HK_RANDOM_FROM, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.4 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-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org 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: , X-List-Received-Date: Fri, 03 Sep 2021 16:06:47 -0000 >>>>> 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