views:

13

answers:

1

It seems that gdb is failing to find breakpoints if a class is implemented in the header file. Therefore I am trying to force a breakpoint from the source. I guess I need the mips equivalent of asm("int3"). Any ideas?

PS: asm("break 3") does not work

A: 

Try __volatile__ __asm__("break");

Employed Russian