CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2001
    Location
    CA , USA
    Posts
    83

    Question Getting information on the crash

    Hello All,

    I have some program that crashes once in a while at my customer site. Say they have debug executable and i have the .pdb file and the source code here. Now how do i trace back into the code with the debug/assertion address that i get from them from the assertion dialog when the program crashes?? Are there any easy to use software to do this ??

    Thanks
    Shashi

  2. #2
    Join Date
    Oct 2002
    Location
    Germany
    Posts
    6,205

    Wink Re: Getting information on the crash

    Quote Originally Posted by coolshashi
    Hello All,

    I have some program that crashes once in a while at my customer site. Say they have debug executable and i have the .pdb file and the source code here. Now how do i trace back into the code with the debug/assertion address that i get from them from the assertion dialog when the program crashes?? Are there any easy to use software to do this ??

    Thanks
    Shashi
    You can generate map files, and use them to analyze your crash.

    Finding Crash Information Using MAP Files

  3. #3
    Join Date
    Sep 2002
    Location
    14° 39'19.65"N / 121° 1'44.34"E
    Posts
    9,815

    Re: Getting information on the crash

    Quote Originally Posted by coolshashi
    I have some program that crashes once in a while at my customer site. Say they have debug executable and i have the .pdb file and the source code here.
    Well, your customers shouldn't have a debug build - you're not allowed to distribute the debug versions of the runtime libraries.
    As Siddhartha said: Create a mapfile, and follow the instructions in the link.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured