* backtracing threaded ARM core
@ 2008-11-27 18:36 Nickolay Vinogradov
2008-11-28 13:52 ` Simon Richter
0 siblings, 1 reply; 2+ messages in thread
From: Nickolay Vinogradov @ 2008-11-27 18:36 UTC (permalink / raw)
To: gdb
Hi,
I'm having trouble with backtracing threaded ARM applications.
My simple application create thread, which call func1() -> func2() ->
func3() and then sleep();
If I kill this thread(with SEGV) while sleep, and look with gdb, I see
only last function nanosleep(), and unknown __pthread_enable_asynccancel().
(gdb) bt
#0 0x01d4cde4 in nanosleep ()
#1 0x01d4be5c in __pthread_enable_asynccancel () at cancellation.c:42
#2 0xbee4d9b4 in ?? ()
Current language: auto; currently asm
When sleep() replaced in the code with while(1), then I can see the full
backtrace:
#0 0x00008260 in func3 (a=<value optimized out>) at core_test.cpp:66
#1 0x0000826c in func2 (a=0x492edfa7) at core_test.cpp:57
#2 0x0000828c in func1 (a=0x492edfa7) at core_test.cpp:49
#3 0x000082c4 in ThreadFunction () at core_test.cpp:45
#4 0x00008908 in start_thread (arg=<value optimized out>) at
pthread_create.c:300
#5 0x00026770 in clone ()
Backtrace stopped: frame did not save the PC
Repeated with:
gcc-4.2.1(armv5b-softfloat-linux) + glibc-2.5
gcc-4.3.2(armeb-none-linux-gnueabi) + glibc-2.8
Could you please help me out ?
--
Nickolay VInogradov
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: backtracing threaded ARM core
2008-11-27 18:36 backtracing threaded ARM core Nickolay Vinogradov
@ 2008-11-28 13:52 ` Simon Richter
0 siblings, 0 replies; 2+ messages in thread
From: Simon Richter @ 2008-11-28 13:52 UTC (permalink / raw)
To: Nickolay Vinogradov; +Cc: gdb
Hi,
> #0 0x00008260 in func3 (a=<value optimized out>) 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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-11-28 13:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-27 18:36 backtracing threaded ARM core Nickolay Vinogradov
2008-11-28 13:52 ` Simon Richter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox