gdb
Terminate program hitting CTRL+C within GDB
My开发者_运维技巧 program is determined to stop its execution by hitting CTRL+C in command window. By now, I have a critical error right in this stopping phase, so i want to debug with gdb.[详细]
2023-04-13 08:28 分类:问答Xcode 4.2 Lion not installing / running project on older devices. iPhone 3G 4.2.1
XCode 4.2 Build 4D199 on Lion with iPhone 3G IOS 4.2.1 Project with Base SDK 5.0 and Target 4.2. On this phone and on older iTouch the debugger never seems to startup.After pushing RUN the project c[详细]
2023-04-12 21:20 分类:问答Setting a breakpoint with gdb when the same source file is used multiple times
I have a foo.c source file which has the following function implementation: #include \"header.h\" void PREFIX(function_name)(){[详细]
2023-04-12 15:06 分类:问答Jumping to the next "instruction" using gdb
I am attempting to figure the canary value setting and checkin开发者_高级运维g mechanism. #include[详细]
2023-04-12 01:16 分类:问答pause gdb without breakpoint
When I am debugging a program in Xcode, I can pause execution in there debugger console.Is there any way to do this using gdb from the command line?[详细]
2023-04-12 00:51 分类:问答Is there any enhanced gdb console for Eclipse?
Currently the gdb console of Eclipse just connects the stdin/stdout between the java gui and the underlying gdb process, hence many gdb shell features are missing, e.g. tab-autocomplete, command histo[详细]
2023-04-11 22:01 分类:问答Why does the address of a local variable vary when executing multiple times, but not when debugging it with GDB?
Why is it that when running code from gdb, I get the same addresses for the variables declared, but while just executing the binary I don\'t get the same addresses.[详细]
2023-04-11 21:47 分类:问答Java API for gdb (GNU Debugger)
I would like to control the gdb (GNU Debugger) from a Java Application: start a debugging session, setting breakpoints, stepping etc.[详细]
2023-04-10 23:10 分类:问答Mapping thread id from top to gdb
I am using top to see the thread wise cpu usage using top -H -p `pgrep app.out` It is showing some pid for each thread like[详细]
2023-04-10 20:19 分类:问答How to debug a program compiled with 'make'?
Tutorials for gdb suggest compiling with \'gcc -g\' to compile the program with debug symbols. However, I want to debug a program compiled with make. How can I instruct make to compile with debugging[详细]
2023-04-10 19:42 分类:问答