<div dir="ltr"><div>Next is good but setting a breakpoint at the line after the task create loop </div><div>is probably the solution here. Or "next NUMBER" to next a number of times.</div><div>Many gdb commands take a number.</div><div><br></div><div>Another interesting option is using continue and break conditions. You could </div><div>then continue until the loop counter is 99 or something.</div><div><br></div><div><a href="https://sourceware.org/gdb/onlinedocs/gdb/Continuing-and-Stepping.html">https://sourceware.org/gdb/onlinedocs/gdb/Continuing-and-Stepping.html</a><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Nov 17, 2020 at 12:41 PM Gedare Bloom <<a href="mailto:gedare@rtems.org" target="_blank">gedare@rtems.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Use 'next' to step by instructions in program order ignoring their<br>
control flow. This also will skip over function calls.<br>
<br>
On Tue, Nov 17, 2020 at 8:54 AM Richi Dubey <<a href="mailto:richidubey@gmail.com" target="_blank">richidubey@gmail.com</a>> wrote:<br>
><br>
> Hi,<br>
><br>
> When I am trying to debug the tm24 test suite, there's some line of code that repeats the same code that creates a task around 100 times. Is there a way I can skip that code while debugging? Please let me know.<br>
><br>
> Thanks,<br>
> Richi.<br>
> _______________________________________________<br>
> devel mailing list<br>
> <a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
> <a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
_______________________________________________<br>
devel mailing list<br>
<a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
<a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
</blockquote></div></div>