Reputation: 13
Say I have following integer int i = 18723849;
So is there any parameter in GDB that can help search memory to find above integer and it's memory location?
E.g: (gdb) find 18723849
Upvotes: 0
Views: 1528
Reputation: 213754
So is there any parameter in GDB that can help search memory to find above integer
Yes, there is.
It's also the first hit for https://www.google.com/search?q=gdb+search+memory
Upvotes: 1