Re: Differences between checked and free versions of a driver
From: cristalink (cristalink_at_nospam.nospam)
Date: 01/28/05
- Next message: Don Burn: "Re: Differences between checked and free versions of a driver"
- Previous message: Hemanshu Srivastava: "RE: Where does the page No. come from?"
- In reply to: Sareena: "Differences between checked and free versions of a driver"
- Next in thread: Don Burn: "Re: Differences between checked and free versions of a driver"
- Messages sorted by: [ date ] [ thread ]
Date: Sat, 29 Jan 2005 06:48:28 +1300
>> What are the differences between the checked and free version
The code generated by a compiler is substantially different for
debug/release modes.
>> which can cause such a behaviour.
Most likely: a bug in your code, such as an uninitialized variable or so,
which doesn't show up in the debug mode. I've seen a lot of such cases.
Less likely: a bug in the compiler.
Unlikely: a timing issue.
>> how do I go about debugging
It's not generally easy. Try to find out why the HCT test fails. Review your
code. Comment out pieces of code until the problem goes away. Use Prefast
from DDK.
I never compile my drivers in the debug mode just to avoid the problems you
are facing.
-- http://www.firestreamer.com - NTBackup to DVD and DV "Sareena" <Sareena@discussions.microsoft.com> wrote in message news:E7B7D504-9985-43C0-855D-620935C074B9@microsoft.com... > Hi, > > I am trying an HCT 11.2 Enable\Disable IO test on x-86 system having a fibre > channel adapter. The test fails when I am using free version of the driver > for the fibre channel adapter, but passes with the debug version of the > driver. > > What are the differences between the checked and free version of the driver > in general, ie memory usage etc, which can cause such a behaviour. > In what circumstances does a test fail in free version and pass in the debug > version of the driver > > > Thanks in advance > Sareena. >
- Next message: Don Burn: "Re: Differences between checked and free versions of a driver"
- Previous message: Hemanshu Srivastava: "RE: Where does the page No. come from?"
- In reply to: Sareena: "Differences between checked and free versions of a driver"
- Next in thread: Don Burn: "Re: Differences between checked and free versions of a driver"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|