How can I detect memory leaks in my driver … Are there any kernel memory
profiling tools availabale that can track the memory usage of specific
drivers?.
Thanks
-Johnny
Send and receive Hotmail on your mobile device: http://mobile.msn.com
How can I detect memory leaks in my driver … Are there any kernel memory
profiling tools availabale that can track the memory usage of specific
drivers?.
Thanks
-Johnny
Send and receive Hotmail on your mobile device: http://mobile.msn.com
Driver Memory Tracking
http://www.sysinternals.com/ntw2k/info/memtrack.shtml
Catch device driver memory problems during development, including buffer
overrun, underrun, and leaks, with this simple memory tracking library.
Performance Instrumenting Device Drivers
http://www.sysinternals.com/ntw2k/info/sysperf.shtml
Obtain cycle-resolution timings of your device driver functions in
minutes using an easy-to-use performance counter library.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Johnny D
Sent: maandag 3 juni 2002 13:52
To: NT Developers Interest List
Subject: [ntdev] detect memory leaks in driverHow can I detect memory leaks in my driver … Are there any
kernel memory
profiling tools availabale that can track the memory usage of
specific
drivers?.Thanks
-Johnny
Johnny,
You can use ExAllocatePoolWithTag to allocate memory and use tool
PoolTag from OSR website to monitor the memory allocation.
BR,
William
-----Original Message-----
From: Johnny D [mailto:xxxxx@hotmail.com]
Sent: 2002年6月3日 4:52
To: NT Developers Interest List
Subject: [ntdev] detect memory leaks in driver
How can I detect memory leaks in my driver … Are there any kernel memory
profiling tools availabale that can track the memory usage of specific
drivers?.
Thanks
-Johnny
Send and receive Hotmail on your mobile device: http://mobile.msn.com
You are currently subscribed to ntdev as: xxxxx@altigen.com
To unsubscribe send a blank email to %%email.unsub%%
!poolused command in WinDbg. Be sure to assign sane tags to your
allocations.
For this command to work, you must set the GlobalFlag bit 0x400
(“enable pool tracking”).
This can be done manually in the registry, via GFLAGS tool or IIRC
Driver Verifier (which also has memory leak detector).
Max
----- Original Message -----
From: “Johnny D”
To: “NT Developers Interest List”
Sent: Monday, June 03, 2002 3:52 PM
Subject: [ntdev] detect memory leaks in driver
> How can I detect memory leaks in my driver … Are there any kernel
memory
> profiling tools availabale that can track the memory usage of
specific
> drivers?.
>
>
> Thanks
> -Johnny
>
> _________________________________________________________________
> Send and receive Hotmail on your mobile device:
http://mobile.msn.com
>
>
> —
> You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> To unsubscribe send a blank email to %%email.unsub%%
>