What is the equivalent of continue in gdb scripts? I tried using loop_continue but it didn't work. Gdb threw error saying undefined command.
I want something like
while $thr
if $thr->procedureId != 28
set $thr = $thr->cnext
loop_continue; // this doesn't work
end
print $thr
set $thr = $thr->cnext
end