好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

gdb tui中切换窗口

(Window names are case in-sensitive.)

  

 

 

To start in neato and highly-recommended GUI mode , start the debugger with  gdb -tui. (For many of the examples, below, I show the output of  gdb‘s dumb terminal mode, but in real life I use TUI mode exclusively.)

And here is a screenshot of what you‘ll see, approximately:

In TUI mode, the  layout command controls which windows you see. Additionally, the  tui reg allows control of the register window, and will open it if it‘s not already open.

The commands are:

layout src Standard layout—source on top, command window on the bottom layout asm Just like the "src" layout, except it‘s an assembly window on top layout split Three windows: source on top, assembly in the middle, and command at the bottom layout reg Opens the register window on top of either source or assembly, whichever was opened last tui reg general Show the general registers tui reg float Show the floating point registers tui reg system Show the "system" registers tui reg next Show the next page of registers—this is important because there might be pages of registers that aren‘t in the "general", "float", or "system" sets

gdb tui中切换窗口

标签:

查看更多关于gdb tui中切换窗口的详细内容...

  阅读:24次