File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -1314,9 +1314,12 @@ gdb ウィンドウにフォーカスを移しコマンドを入力します。
13141314ソースコードを表示するウィンドウで、これらのコマンドをgdbの制御に使用できます:
13151315 `:Run ` [args] [args] または以前の引数でプログラムを実行する
13161316 `:Arguments ` {args} 次の `:Run ` のために引数を設定する
1317- *:Break* カーソル位置にブレークポイントを設定する。
1317+ *:Break* カーソル位置にブレークポイントを設定する
13181318 :Break {position}
1319- 指定位置にブレークポイントを設定する。
1319+ 指定位置にブレークポイントを設定する
1320+ *:Tbreak* カーソル位置に一時的なブレークポイントを設定する
1321+ :Tbreak {position}
1322+ 指定位置に一時的なブレークポイントを設定する
13201323 *:Clear* カーソル位置のブレークポイントを削除する
13211324 *:Step* gdb の "step" コマンドを実行する
13221325 *:Over* gdb の "next" コマンドを実行する (`:Next ` は Vim のコマンド)
Original file line number Diff line number Diff line change @@ -1331,6 +1331,9 @@ gdb:
13311331 *:Break* set a breakpoint at the cursor position
13321332 :Break {position}
13331333 set a breakpoint at the specified position
1334+ *:Tbreak* set a temporary breakpoint at the cursor position
1335+ :Tbreak {position}
1336+ set a temporary breakpoint at the specified position
13341337 *:Clear* delete the breakpoint at the cursor position
13351338
13361339 *:Step* execute the gdb "step" command
You can’t perform that action at this time.
0 commit comments