ルネサス
debugger.Breakpoint.Set
ブレークポイントを設定します。
[指定形式]
debugger.Breakpoint.Set(BreakCondition)
[引数]
引数
説明
BreakCondition
ブレーク条件を指定します。
ブレーク条件の作成については,BreakConditionクラスを参照してください。
[戻り値]
設定したブレーク・イベント番号(数値)
[詳細説明]
-
BreakConditionで指定されている内容に従って,ブレークポイントを設定します。
ブレーク名は,“Pythonブレークxxxx”(xxxx:4桁の数字)となります。
[使用例]
>>>Condition = BreakCondition()
>>>Condition.Address = "main"
>>>breakNumber = debugger.Breakpoint.Set(Condition)
1
>>>print breakNumber
>>>debugger.Breakpoint.Information()
1 Pythonブレーク0001 Enable 0x000002dc