This is regarding to add some extra delay while opening gdb. The scenario is something like this:
- From c++ I use to call my gdb. which is auto configured with host setup in .gdbinit file. Target release localhost:PortNumber
- And gdb debugger stops at its reset vector location.
- I am giving the reset vector address through a pin prior to opening gdb, which should be updated and gdb should stop at new location.
- but gdb is still stops at its initial reset vector location.
- So, I need to give a short delay while opening the gdb.
How this can be done? Any solution will be appreciated.