From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24269 invoked by alias); 28 Nov 2008 13:52:26 -0000 Received: (qmail 24257 invoked by uid 22791); 28 Nov 2008 13:52:25 -0000 X-Spam-Check-By: sourceware.org Received: from static.88-198-202-190.clients.your-server.de (HELO kleinhenz.com) (88.198.202.190) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 28 Nov 2008 13:51:46 +0000 Received: from localhost (mnch-5d8706c9.pool.einsundeins.de [93.135.6.201]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client CN "Simon Richter", Issuer "CA Cert Signing Authority" (verified OK)) by kleinhenz.com (Postfix) with ESMTP id 3354B39B545; Fri, 28 Nov 2008 14:57:41 +0100 (CET) Date: Fri, 28 Nov 2008 13:52:00 -0000 From: Simon Richter To: Nickolay Vinogradov Cc: gdb@sourceware.org Subject: Re: backtracing threaded ARM core Message-ID: <20081128135139.GA7690@richter> References: <492EE883.4040301@protei.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <492EE883.4040301@protei.ru> User-Agent: Mutt/1.5.18 (2008-05-17) X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2008-11/txt/msg00163.txt.bz2 Hi, > #0 0x00008260 in func3 (a=) at core_test.cpp:66 You are debugging a program that has been compiled with optimization. This is not guaranteed to be possible, as optimization may for example inline functions and thus not set up a stack frame for them. Simon