I have a user mode executable which setup a file mapping by following steps
- CreateFileMapping (file handle is INVALID_HANDLE_VALUE)
- MapViewOfFile (got a memory address)
I set a memory write break point on the returned address
ba w 4 addr
the debugger never break on this break point, but the content of the breaking region do changed. So how to break in this situation ? Many thanks!!