From: suresh on 14 Jul 2010 08:52 Hi, I want to find the total memory footprint of my driver. Is there any tool or some commands in WinDbg available which can give me this information? I basically want to find out how much total memory (paged and nonpaged) my driver is using at idle time, and at peak performance situation. Regards, Suresh
From: Scott Noone on 14 Jul 2010 09:36 > I want to find the total memory footprint of my driver. Is there any > tool or some commands in WinDbg available which can give me this > information? No, the O/S doesn't track memory usage by drivers. > I basically want to find out how much total memory (paged and > nonpaged) my driver is using at idle time, and at peak performance > situation. If all you care about it paged and non-paged pool allocations then you can always just tag your memory allocations and use PoolTag or PoolMon to see how much memory you're using (or just instrument your driver to keep track). -scott -- Scott Noone Consulting Associate OSR Open Systems Resources, Inc. http://www.osronline.com "suresh" <patil_suresh420(a)yahoo.com> wrote in message news:454ec88d-7b05-492a-85c6-c58d9d7af853(a)a14g2000pro.googlegroups.com... > Hi, > > I want to find the total memory footprint of my driver. Is there any > tool or some commands in WinDbg available which can give me this > information? > > I basically want to find out how much total memory (paged and > nonpaged) my driver is using at idle time, and at peak performance > situation. > > Regards, > Suresh >
|
Pages: 1 Prev: Simple hack to get $500 to your home. Next: How to power down USB device and hub ? |