0
gdbスクリプトでcontinueと同等の機能は何ですか? loop_continueを使ってみましたが動作しませんでした。 Gdbは、未定義コマンドのエラーを投げました。gdbスクリプトの再起動continue whileループ
私は
while $thr
if $thr->procedureId != 28
set $thr = $thr->cnext
loop_continue; // this doesn't work
end
print $thr
set $thr = $thr->cnext
end