From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5199 invoked by alias); 10 Sep 2010 19:43:07 -0000 Mailing-List: contact archer-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: List-Id: Received: (qmail 5186 invoked by uid 22791); 10 Sep 2010 19:43:06 -0000 X-SWARE-Spam-Status: No, hits=-6.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org From: Tom Tromey To: Oleg Nesterov Cc: Roland McGrath , utrace-devel@redhat.com, "Frank Ch. Eigler" , Jan Kratochvil , archer@sourceware.org Subject: Re: gdbstub initial code, v9 References: <20100908191838.GA27120@redhat.com> <20100909152937.GA21586@redhat.com> <20100909155047.GA22403@redhat.com> <20100909160423.GA9768@host1.dyn.jankratochvil.net> <20100909163031.GA23799@redhat.com> <20100909163635.GA12356@host1.dyn.jankratochvil.net> <20100909164500.GA25164@redhat.com> <20100910101242.F0B83405D5@magilla.sf.frob.com> <20100910181100.GA27699@redhat.com> Date: Fri, 10 Sep 2010 19:43:00 -0000 In-Reply-To: <20100910181100.GA27699@redhat.com> (Oleg Nesterov's message of "Fri, 10 Sep 2010 20:11:00 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2010-q3/txt/msg00181.txt.bz2 >>>>> "Oleg" == Oleg Nesterov writes: >> I've always just used: >> (gdb) set var=0 Oleg> No, I tried this too, doesn't work. Oleg> (gdb) set var=0 Oleg> A syntax error in expression, near `=0'. Yeah, it is ambiguous if the actual variable name conflicts with any gdb "set" subcommand. I typically just use call or print. Tom