From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12855 invoked by alias); 23 Feb 2002 18:24:13 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 12779 invoked from network); 23 Feb 2002 18:24:10 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.135.44) by sources.redhat.com with SMTP; 23 Feb 2002 18:24:10 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 4F3903D31; Sat, 23 Feb 2002 13:24:08 -0500 (EST) Message-ID: <3C77DE48.8010609@cygnus.com> Date: Sat, 23 Feb 2002 10:24:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.8) Gecko/20020210 X-Accept-Language: en-us MIME-Version: 1.0 To: Andrew Cagney Cc: gdb@sources.redhat.com Subject: Re: A copy/save command ... References: <3C341E2D.6050009@cygnus.com> <3C476C0B.90009@cygnus.com> <3C644931.6050401@cygnus.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-02/txt/msg00276.txt.bz2 > dump memory > write memory from to > +-1 as bytes. > While: > (*(char*)START)@LENGTH > is equvalent this would be > more efficient. > With the option: > /a append to file > (assuming I can get it to work and where applicable :-). There is a bug here :-/ The parser can't easily differentiate (using LL1) between the two ``/a'''s in: dump memory/a /a so: dump memory append memory ? Andrew