LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Runtime Crash

Hi,

I have a serious runtime error and my application crash in random mode. I check windows (WIN7 is SO) events and I see this situation:

Faulting application name: appS.EXE, version: 1.0.0.0, time stamp: 0x58bc94e8
Faulting module name: appS.EXE, version: 1.0.0.0, time stamp: 0x58bc94e8
Exception code: 0xc0000005
Fault offset: 0x00105159
Faulting process id: 0x%9
Faulting application start time: 0x%10
Faulting application path: %11
Faulting module path: %12
Report Id: %13

This application run in other system and there isn't runtime problems. 

Can you help me?

0 Kudos
Message 1 of 2
(2,308 Views)

The faulty module appears to be inside your own application and not in external modules like the RTE. In this scenario, you could try to recompile the application generating the map file (Build >> Target settings, next check "Generate map file" option) next rerun the application and search the given address inside the map file: the closest address is the function inside which the error is raised. Depending on how frequently the crash appears you may need to add some reporting to monitor the runtime behaviour either in the debug window (using for example DebugView to catch the messages) or to a physical file.

The given exception code mean Access violation: you may have problem in accessing some restricted resource or maybe a parametric name gets messy under some circumstances or there may be some other reason, it depends on the code you are executing.



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 2 of 2
(2,304 Views)