I am trying to figure out when a specific memory address is being written. I tried a couple of different loops in gdb, but it never stopped. Any ideas?
Example:
(gdb) while *0x68181b88 == 0
> step
> end
PS: This is a Linux mips system.
Edit: my MIPS does not have hw support / registers for viewing memory values. Although the watch works, it takes about 10 hours to run the application with a 5-second lifetime. That is why I am trying to use loops.
source
share