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 ウィンドウにフォーカスを移しコマンドを入力します。
1314
1314
ソースコードを表示するウィンドウで、これらのコマンドをgdbの制御に使用できます:
1315
1315
`:Run ` [args] [args] または以前の引数でプログラムを実行する
1316
1316
`:Arguments ` {args} 次の `:Run ` のために引数を設定する
1317
- *:Break* カーソル位置にブレークポイントを設定する。
1317
+ *:Break* カーソル位置にブレークポイントを設定する
1318
1318
:Break {position}
1319
- 指定位置にブレークポイントを設定する。
1319
+ 指定位置にブレークポイントを設定する
1320
+ *:Tbreak* カーソル位置に一時的なブレークポイントを設定する
1321
+ :Tbreak {position}
1322
+ 指定位置に一時的なブレークポイントを設定する
1320
1323
*:Clear* カーソル位置のブレークポイントを削除する
1321
1324
*:Step* gdb の "step" コマンドを実行する
1322
1325
*:Over* gdb の "next" コマンドを実行する (`:Next ` は Vim のコマンド)
Original file line number Diff line number Diff line change @@ -1331,6 +1331,9 @@ gdb:
1331
1331
*:Break* set a breakpoint at the cursor position
1332
1332
:Break {position}
1333
1333
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
1334
1337
*:Clear* delete the breakpoint at the cursor position
1335
1338
1336
1339
*:Step* execute the gdb "step" command
You can’t perform that action at this time.
0 commit comments