From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17424 invoked by alias); 27 Mar 2003 20:51:39 -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 17410 invoked from network); 27 Mar 2003 20:51:38 -0000 Received: from unknown (HELO nick.uklinux.net) (194.247.50.55) by sources.redhat.com with SMTP; 27 Mar 2003 20:51:38 -0000 Received: by nick.uklinux.net (Postfix, from userid 501) id 52D6575FDD; Thu, 27 Mar 2003 20:35:33 +0000 (GMT) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16003.24724.76812.284701@nick.uklinux.net> Date: Thu, 27 Mar 2003 20:51:00 -0000 To: Andrew Cagney Cc: gdb@sources.redhat.com Subject: Re: [rfc] Annotation level THREE In-Reply-To: <3E773B59.90403@redhat.com> References: <3E6E7326.3020906@redhat.com> <15985.7336.23998.590592@nick.uklinux.net> <3E751565.4030409@redhat.com> <15990.10811.61395.996906@nick.uklinux.net> <3E763228.9060104@redhat.com> <15990.62618.114706.459904@nick.uklinux.net> <3E773B59.90403@redhat.com> X-SW-Source: 2003-03/txt/msg00377.txt.bz2 > ...Further, unless your using some sort of changes-only > mechanism, such as provided by the varobj, the display windows are just > not going to scale. If I change the value of a simple data type then I can see it in the changelist. However, when I change an array value or that of a structure I don't. e.g -var-create - * i ^done,name="var1",numchild="0",type="int" (gdb) -var-create - * r ^done,name="var2",numchild="10",type="double [10]" (gdb) set var i=3 &"set var i=3\n" ^done (gdb) -var-update * ^done,changelist=[{name="var1",in_scope="true",type_changed="false"}] (gdb) set var r[3]=6 &"set var r[3]=6\n" ^done (gdb) -var-update * ^done,changelist=[] (gdb) Is there a way round this? Nick