From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20462 invoked by alias); 5 Sep 2010 19:41:19 -0000 Mailing-List: contact archer-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: List-Id: Received: (qmail 20452 invoked by uid 22791); 5 Sep 2010 19:41:18 -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 Date: Sun, 05 Sep 2010 19:41:00 -0000 From: Jan Kratochvil To: Oleg Nesterov Cc: archer@sourceware.org, utrace-devel@redhat.com Subject: Re: gdbstub initial code, v8 Message-ID: <20100905194101.GA31584@host1.dyn.jankratochvil.net> References: <20100903224047.GA8917@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100903224047.GA8917@redhat.com> User-Agent: Mutt/1.5.20 (2009-12-10) X-SW-Source: 2010-q3/txt/msg00148.txt.bz2 On Sat, 04 Sep 2010 00:40:47 +0200, Oleg Nesterov wrote: > - implement qXfer:siginfo:read > > - implement continue with signal. OK, thanks, just it was a bit premature to ask for it I see. I miss at least memory writes (also to put in breakpoints): (gdb) ptype done type = int (gdb) p done=1 $6 = 0 :-) Sending packet: $M7f00e6a378e0,1:cc#da...Packet received: - without much effect. Using some: killall -9 nc sigtest;gcc -o sigtest sigtest.c -Wall -g;nice -n20 ./sigtest&p=$!;nc -l 2000 <>/proc/ugdb >&0& ../gdb -nx -ex 'set architecture i386:x86-64' -ex 'set debug remote 0' -ex 'set debug solib 1' -ex 'set target-async on' -ex 'set non-stop on' -ex 'target extended-remote :2000' -ex 'file ./sigtest' -ex "attach $p" -ex 'info shared' Thanks, Jan