From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26280 invoked by alias); 21 Jun 2006 21:59:17 -0000 Received: (qmail 26271 invoked by uid 22791); 21 Jun 2006 21:59:17 -0000 X-Spam-Check-By: sourceware.org Received: from nz-out-0102.google.com (HELO nz-out-0102.google.com) (64.233.162.206) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 21 Jun 2006 21:59:15 +0000 Received: by nz-out-0102.google.com with SMTP id o1so282336nzf for ; Wed, 21 Jun 2006 14:59:13 -0700 (PDT) Received: by 10.36.252.49 with SMTP id z49mr1014118nzh; Wed, 21 Jun 2006 14:59:13 -0700 (PDT) Received: by 10.36.103.10 with HTTP; Wed, 21 Jun 2006 14:59:13 -0700 (PDT) Message-ID: <7f45d9390606211459q4adc78e8ubeb7f581a4703ba@mail.gmail.com> Date: Thu, 22 Jun 2006 03:17:00 -0000 From: "Shaun Jackman" Reply-To: "Shaun Jackman" To: gdb@sources.redhat.com Subject: Re: Undo add-symbol-file In-Reply-To: <20060621215245.GA18017@nevyn.them.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <7f45d9390606211446l5cbce9bdy6302c63c43c8af0d@mail.gmail.com> <20060621215245.GA18017@nevyn.them.org> X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2006-06/txt/msg00179.txt.bz2 On 6/21/06, Daniel Jacobowitz wrote: > Try just "symbol-file", without a new symbol file? Aha! Here's the trick. I was trying to move a symbol file loaded with add-symbol-file from location a to b. So I tried... symbol-file kernel add-symbol-file busybox 0x1000000 ... hoping that the symbol-file command would clear the add-symbol-file tables. It does not work this way. However, as you pointed out, the following does work. symbol-file symbol-file kernel add-symbol-file busybox 0x1000000 Thanks! Shaun