Everything

debugger.Trace.Set


条件トレースを設定します。

[指定形式]

debugger.Trace.Set(TraceCondition)

[引数]

引数

説明

TraceCondition

条件トレースの条件を指定します。

条件トレースの作成については,TraceConditionクラスを参照してください。

[戻り値]

設定したトレース・イベント番号(数値)

[詳細説明]

-

TraceConditionで指定されている内容に従って,条件トレースを設定します。

-

設定した条件トレースは,以下の名前で登録されます。

トレース

[使用例]

>>>tc = TraceCondition()
>>>tc.StartAddress = "main"
>>>tc.EndAddress = "chData"
>>>tc.EndData = 0x20
>>>tc.EndTraceType = TraceType.Write
>>>ts_number = debugger.Trace.Set(tc)
1
>>>print ts_number
1