vote up 2 vote down star

I have an application that seems to throw exceptions only after the program has been closed. And it is very inconsistent. (We all know how fun inconsistent bugs are...)

My guess is there is an error during the clean up process. But these memory read/write errors seem to indicate something wrong in my "unsafe" code usage (pointers?).

What I am interested in is what is the best method to debug these situations?
How do you debug a program that has already closed?
I am looking for a starting point to break down a larger problem.

These errors seem to present themselves in several ways (some run time, some debug):
1: .NET-BroadcastEventWindow.2.0.0.0.378734a.0: Application.exe - Application Error
The instruction at "0x03b4eddb" referenced memory at "0x00000004". The memory could not be "written".

2: Application.vshost.exe - Application Error
The instruction at "0x0450eddb" referenced memory at "0x00000004". The memory could not be "written".

3: Application.vshost.exe - Application Error
The instruction at "0x7c911669" referenced memory at "0x00000000". The memory could not be "read".

4: Application.vshost.exe - Application Error
The instruction at "0x7c910ed4" referenced memory at "0xfffffff8". The memory could not be "read".

flag

7 Answers

vote up 2 vote down check

If your app is multi-threaded you could be getting errors from worker threads which aren't properly terminating and trying to access disposed objects.

link|flag
Yes it is multi-threaded. I realize developers tend to shun large thread count apps but my application can have several animated graphics running at the same time, thus the significant thread count. – PersistenceOfVision Oct 8 '08 at 14:12
Multi-threaded isn't a sin in-and-of-itself, but it is more likely than not that an errant thread (or two) are charging off into the distance long after your process has terminated. Check for running processes after you close your app. – Rob Allen Oct 8 '08 at 14:20
@[PersistenceOfVision]: if you suspect that secondary threads are the culprit, you might want to replace them with SafeThreads - codeproject.com/KB/threads/… – Steven A. Lowe Oct 24 '08 at 1:32
vote up 1 vote down

I've seen plently of errors just like this recently. My issues were releated to how the CRT (C Runtime) intereacting with the .NET runtime cleans up a closing process. My application is complicated by the fact it is C++, but allows COM add-ins to to loaded, some which are written in C#.

To debug this, I think you're going to need to use native debugging. Visual Studio (set to mixed mode debugging) or WinDbg. Look up how to use the Microsoft public symbol server to download PDBs for windows components - you'll need those symbols.

Many of our problems were with .NET's (awful) COM client support. I say awful since it doesn't reference count correctly (without a lot of work on the developer's end). COM objects were not being referenced-counted down to zero until garbage collect was done. This often setup odd timing issues during shutdown - COM objects being cleaned up long after they should have been.

link|flag
vote up 1 vote down

A fancier word for "inconsistent" is "non-deterministic." And what happens non-deterministically in the .NET environment? Object destruction.

When this happened to me, the culprit was in the class that I wrote to wrap unsafe calls to an external API. I put cleanup code in the class's destructor, expecting the code to be called when the object went out of scope. But that's not how object destruction works in .NET, When an object goes out of scope, it gets put in the finalizer's queue, and its destructor doesn't get called until the finalizer gets around to it. It may not do this until after the program terminates. If this happens, the result will look a lot like what you're describing here.

Once I made my class implement IDisposable, and explicitly called Dispose() on the object when I was done with it, the problem went away. (Another advantage of implementing IDisposable is that you can instantiate your object at the start of a using block and be confident that Dispose() will get when the code leaves the block.)

link|flag
vote up 0 vote down

I have IDISPOSE implemented but still getting similar error in my code. Can you guys confirm if did manage to solve the problem?

Thanks in advance for your help.

link|flag
My errors were occurring due to threads attempting to access resources/objects that were no longer available after the user moves on in my code. Thus I could get exceptions and at other times I wouldn't get exceptions due to going down a single path that generated a thread. – PersistenceOfVision Oct 21 '08 at 19:26
vote up 0 vote down

I have been getting this same error after running Microsoft Bootvis. It's an admin application used to speed up Boot times, it logs the time to load drivers on the next reboot, but normally after it reboots the program will load and show the result times. But, instead of loading the program I get this error like you are getting, and another error right before... Two errors read: "The instruction at "0x7c910ed4" referenced memory at "0xffffffff". The memory could not be "read"."

Then I get this error after I click ok on the first error:

"The instruction at "0x7c9113a0" referenced memory at "0xffffffff". The memory could not be "read"."

I believe the problem started arising around the time I upgraded to Service Pack 3 for XP. Ironically SP3 also broke the Remote Desktop feature, a great program now not able to run at all. Nice Service Pack, Microshit.

As for debugging, that's not my best subject as it is, but debugging a closed program well you got me there I do not have a clue how to do that.

link|flag
vote up 0 vote down

PERHAPS THIS (IN MY TOTAL IGNORANCE) CAN SHED SOME ADDITIONAL LIGHT FOR YOU ALL - BEGAN AFTER MOST RECENT M'SOFT MONTHLY UPDATES - RUNNING WINXP SP3 - I SEEM TO GET THIS ERROR (BELOW) ON JUST ABOUT ALL APPLICATION CLOSINGS:

WINDOC.EXE - Application Error The instruction "Ox7c9113aO" referenced memory at "0x00000000". The memory could not be "written". Click OK to terminate the program.

LuComServer_3_4.EXE - Application Error The instruction "Ox7c9113aO" referenced memory at "0x00000000". The memory could not be "written". Click OK to terminate the program.

ALSO SAME FOR NAVW32.exe Application Error AND MANY OTHERS???

link|flag
vote up 0 vote down

try this to force the bug to happen while under program control

   //set as many statics as you can to null;
   GC.Collect();
   GC.WaitForPendingFinalizers();
} //exit main
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.