Unix:关于调试器DDD

注:以下理解暂时不一定是对的

——》“Next”指运行到下一条指令,不进入当前函数;

——》“Until”将循环一次执行完毕

——》“Step”进入函数

——》“Finish”进入函数后一次执行完毕剩余部分

——》“Cont”执行完整个程序的剩余部分

——》“Nexti”在进入子函数后,在子函数中运行到下一条指令


************************************************************************

以下是一篇好文

http://blog.csdn.net/caspiansea/article/details/13762977




*************************************************************************

DDD想display一个值时,会显示“value optimized out”

见http://blog.csdn.net/fanbird2008/article/details/6399630


另:

From https://idlebox.net/2010/apidocs/gdb-7.0.zip/gdb_9.html

The values of arguments that were not saved in their stack frames are shown as `value optimized out'.

Im guessing you compiled with -O(somevalue) and are accessing variables a,b,c in a function where optimization has occurred.

你可能感兴趣的:(Unix)