This might be a long shot, but I\'m having a bug that I\'m fairly sure is specific to my program.I\'m animating something, and between then the animation starts and stops, something is influencing my
In my application, I handle SIGSEG to produce a backtrace and call abort() to generate a core dump. IfI now run a gdb-post-m开发者_运维百科ortem analysis of the core, the thread which caused the SEGFA
I have a shared library libtest.so which will be loaded into the the main program using dlopen. Function test() reside in libtest.so and will be called in the main program through dlsym开发者_开发知识
I\'m trying to debug code in Emacs but when I try either M-x gdb or M-x pdb, I get this error: global-set-key: Key sequence C-x C-a C-l starts with non-prefix key C-x C-a
I have a program which uses two threads. I have put the break point in both the threads. While running the program under gdb I want to switch between the threads and make them run.
Is there a way for my code to be instrumented to insert a break point or watch on a memory location that will be honored by gdb?(And presumably have no effect when gdb is not attached.)
I\'m trying to debug an issue that only occurs when my iPhone app receives a push notification. The trouble is I can\'t figure out how to get a debugger, or even view any NSLog output, when my app is
I\'m trying to debug some STL based C++ code in gdb. The code has something like int myfunc() { std::map<int,int> m;
I am using emacs and autotools, to write and compile c/c++ sources on linux. I am using gdb via GUD in emacs.
I have a Universal app which is targeting 10.5 and which uses garbage collection. I am building for ppc, i386 and x86_64.