私はS390xのGDBで作業しています
私は本質的にこれを行う関数を持っています:
Item *getItemFromRef( PrimaryDataStructure pds, size_t ref ) {
Item *returnValue = NULL;
SecondaryDataStructure sds = getSecondaryFromPrimary(pds, ref)
if (sds) {
returnValue = getItemFromRefSecondary(sds, ref);
}
return returnValue;
}
getItemFromRef
とにブレークポイントを設定しましたgetItemFromRefSecondary
。getItemFromRef
ブレークポイントは正常に起動しますが、起動することはありgetItemFromRefSecondary
ません。これは期待されていますか?それを発火させる方法はありますか?私は何が間違っているのですか?この動作は、のブレークポイントを無効にしても発生しますgetItemFromRef
。
編集:gdb6.8.50を使用