From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40247) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEfxD-0007oU-8l for qemu-devel@nongnu.org; Wed, 28 Aug 2013 09:38:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VEfx5-0004SY-Da for qemu-devel@nongnu.org; Wed, 28 Aug 2013 09:38:35 -0400 Received: from mail-ee0-f44.google.com ([74.125.83.44]:55023) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEfx5-0004SP-86 for qemu-devel@nongnu.org; Wed, 28 Aug 2013 09:38:27 -0400 Received: by mail-ee0-f44.google.com with SMTP id b47so2967189eek.17 for ; Wed, 28 Aug 2013 06:38:11 -0700 (PDT) Date: Wed, 28 Aug 2013 15:38:07 +0200 From: Stefan Hajnoczi Message-ID: <20130828133807.GB12214@stefanha-thinkpad.muc.redhat.com> References: <20130828081130.GE4696@stefanha-thinkpad.muc.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] Problems with QEMU sdcard while using glib 2.33.8 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Taimoor Mirza Cc: qemu-devel On Wed, Aug 28, 2013 at 04:17:24PM +0500, Taimoor Mirza wrote: > Thanks for your reply. Below are answers > > $ grep CONFIG_COROUTINE_BACKEND config-host.mak > CONFIG_COROUTINE_BACKEND=win32 > > (gdb) r > Starting program: C:\tools\qemu\qemu-system-arm.exe > -M realview-eb -m 256 -kernel Debug\\\\KD2.out -sd fat:16:rw:C:\\testCard > [New Thread 3836.0x404] > [New Thread 3836.0x87c] > [New Thread 3836.0xd14] > [New Thread 3836.0xc58] > [Inferior 1 (process 3836) exited with code 03] > (gdb) bt > No stack. It seems that gdb on Windows does not catch abort(3) - perhaps because SIGABRT is not used (on Linux gdb will intercept SIGABRT and return to the gdb prompt). So you may need to set a breakpoint on abort(3) instead: (gdb) b abort (gdb) r [...runs until abort(3) is called...] (gdb) bt