I have a big C++ code (server for some application). This application is big, and catch a crash per 2 months in average.
I have the following crash log and complete source code of app. All I see is call to abort in libc while calling free (which was probably called from libstdc++ delete which is not even shown.) How d
I am currently looking into an issue where an application is using alot of private memory for a C++ app. It looks like alot is in commited and reserve m开发者_运维知识库emory based on the dump analysi
The code below produces a crash dump when I run it in Azure development fabric, but not when I deploy it to the cloud.I have:
Got this callstack when I open a Windows crash dump in Visual Studio 2005: >myprog.exe!app_crash::CommonUnhandledExceptionFilter(_EXCEPTION_POINTERS * pExceptionInfo=0x0ef4f318)Line 41C++
I am attempting to bui开发者_开发百科ld google-breakpad and I am getting the error File \"C:\\google-breakpad\\src\\tools\\gyp\\pylib\\gyp\\generator\\msvs.py\", line 907, in _GetPathDict
I was testing my app, and it crashed. I wasn\'t debugging it, so Windows Error Reporting kicked in (I was testing on a Windows XP virtual machine which doesn\'t have VS installed, so I think that\'s w
I\'ve been looking around S开发者_如何学GoO, but didn\'t find the definitive answer. I want to set up automatic crash dump generation on a production machine so that whenever a crash or hang happens,
So I have an app that is live in the app store that I\'ve modified to send back crash reports. This has helped me get rid of most of my bugs, but I\'m having hard time identifying this one. Below is a
I am working on a MySQL开发者_如何学运维 user-defined function (UDF) that is basically a wrapper for a Windows system function. My problem is that the UDF works as intended for certain inputs, but cau