Does anyone have any experience of using the Windows Native Client debugger as described here to debug a Native Client application?
I'm trying to fire a software breakpoint or exception in the application code which would halt the attached and running GDB at the source line it was fired from and be able to continue execution.
I can do this by creating an illegal address exception, eg:
#define SOFTBREAK { int *p=0; p=0; }
which does break into the debugger where ever the define is used:
Program received signal SIGSEGV, Segmentation fault.
0x0000000c00209ba2 in CTestTestList::Init (this=0xfe55d080) at ../testlist.cpp:1242
1242 in ../testlist.cpp
however i can't seem to continue execution using the jump command to skip the break line, (either using the next source line or assembly address). Do i need to acknowledge or clear the segmentation fault before continuing?
Does anyone know if its possible to continiue exectuion using the illegal address exception? Or is there a different method that could be used, for example, raising a software exception, (EXC_SOFTWARE)? Any help or advice would be appreciated.
(Btw, this is my first post to stack overflow so apologises if i've not followed any etiquette with this post.)
Many thanks,
Andy