Skip to content

Commit

Permalink
<debugging> : ユースケースを記載 #1232
Browse files Browse the repository at this point in the history
  • Loading branch information
faithandbrave committed Sep 18, 2024
1 parent 30fab63 commit dd8477c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reference/debugging/breakpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ namespace std {
## 概要
ブレークポイントを設置する。
この関数は無条件のブレークポイントであり、デバッガがプログラムを監視しているかに関わらずプログラムの一時停止 (ブレーク) を試みる。
この関数は無条件のブレークポイントであり、デバッガの存在を検出できない状況でもプログラムの一時停止 (ブレーク) を試みる。
プログラムコードでブレークポイントを指定できると、複雑な実行時条件でプログラムを一時停止させることができる。
## 効果
Expand Down
2 changes: 2 additions & 0 deletions reference/debugging/is_debugger_present.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace std {
この関数は、デバッガがプログラムを監視中かどうかを判定する。プラットフォーム固有の結果を決定できない場合、ユーザーがこの関数を定義することで柔軟に動作を制御できる。
プログラムがデバッガ実行中かを判定できることで、デバッガ実行中に問題の診断に役立つ追加の出力やテストができる。
## 置き換え可能
ユーザーのプログラムでこの関数を定義することで、標準ライブラリで定義されるデフォルトの動作を置き換えることができる。
Expand Down

0 comments on commit dd8477c

Please sign in to comment.