|
Freddy2002: it still will not work because you cannot issue ADDR command with a direct address as the parameter (context). When you type the parameter of ADDR command it is the address of process specific KPEB (Kernel Process Environment Block), not any direct addressing. Context can be set only with KPEB, process name or PID.
So, you can set the breakpoints on the following ways:
ADDR Armadillo (process name)
BPX/BP 4a4740 (x)
ADDR 8202aa00 (KPEB)
BPX/BP 4a4740 (x)
ADDR 160 (PID)
BPX/BP 4a4740 (x)
It will work in DS 3.1 without issuing any additional commands and environment variables.
Regards.
|