Log in

View Full Version : how to show the module size


spiderman
October 11th, 2002, 16:59
hi,

I think, in softice, there must be a command that can show the size of one specified module being used. however, I didn't find it. would you please tell me?

thank you

Kayaker
October 11th, 2002, 19:19
Hi

MAP32 <taskname> will give you a section map of a process, then calculate the size by subtracting the base address from the relative ending address of the last section.

QUERY <taskname> will give you the entire virtual address map of a process, then you could calculate the size by adding just the committed regions of the module itself.

The MAP32 command is probably the easiest, can't think of any other way offhand.

Kayaker