How do I find which function caused the fault

  • Thread starter Thread starter Ken Beauchesne
  • Start date Start date
K

Ken Beauchesne

I have the infamous 0xc0000005 or the 0x00000002 exception that comes up
at address 0x02FC1768
I have traced it to NetcfagL1_0.dll which starts at 0x02FA0000
and has a size of 167936
what can I use to determine which function is being called
this is a C# program


tia

Ken
 
Unfortunately you can't. To use that info you need a MAP file at the very
least and peferrable a COD file as well for the crashing module. You need
to do a process of elimination to determine what call you're making that is
the start of the stack that does it.


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
 
Back
Top