I'm trying to use boundschecker to analyze a rather complex program. Running the program with boundschecker is almost too slow for it to be of any use since it takes me almost a day to run the program to the point in the code where I suspect the issue exists. Can anyone give me some ideas for how to inspect only certain parts of my sof...
So I've got a Visual studio 2005 solution that contains a C# project (test driver - creates exe) and 7 C++ Projects (dll's).
This solution builds fine up to this point.
I have DevPartner studio 8.2 installed. I am trying to generate test coverage on the entire solution which requires me to instrument native c++ code during builds. when...
I'm trying to generate a memory leak report using BoundsChecker 9.0.931.1 (BC.exe) through command line. The command I use is:
BC.exe /B sessionlog.dbpcl /XD xmlout.xml /OUT errorfile.txt /S /NOLOGO /W D:\Test\debug__bin D:\Test\debug\bin\Application.exe "input.txt"
I have instrumented the DLLs used by my application and the report can...
I used to have DevPartner Profiler Community Edition installed on my machine, which was free to use indefinitely and was compatible with Visual Studio 2003.
After I have rebuild my machine and downloaded a newer version (version 8.1) of the software, it turns out it is actually a 45 day trial eventhough it is still called a Community E...
I'm using DevPartner to track down memory leaks in a long-running .NET/WPF app. DevPartner tells me what classes are being leaked over time (primarily WeakReference, but also EffectiveValueEntry and WeakDependencySource).
What I need to know is what other object(s) still have references to these in order to prevent them from being garb...