最近的项目中由于要在C++代码中调用PHP的URL,所以不得不借助libcurl这个库,由于第一次用,所以很多地方很是纠结,特此写在这里,方便给同...
最近的项目中由于要在C++代码中调用PHP的URL,所以不得不借助libcurl这个库,由于第一次用,所以很多地方很是纠结,特此写在这里,方便给同...
Why does google breakpad not handle all crashes? How can I debug these cases?
The Visual C++ C C++ runtime library will remove the hook set with SetUnhandledExceptionFilter in certain circumstances; for example, when it detects a buffer overflow or other security problem. This Microsoft feedback page lists how to stop this behavior for most of the cases, but states that it s not possible for the buffer overflow case without introducing security problems.
How To Capture A Minidump: Let Me Count The Ways
As I was waiting for a minidump I was grabbing on a very large and busy server application to finish writing,...
windows下捕获dump之Google breakpad_client的理解
breakpad是Google开源的一套跨平台工具,用于dump的处理。很全的一套东西,我这里只简单涉及breakpad客户端,不涉及纯文本符号生成,不涉及...
SetUnhandledExceptionFilter and the C/C++ Runtime Library
This article presents a fix for SetUnhandledExceptionFilter to work with the CRT.Download source code - 30.9 KBInt...
VS2005中SetUnhandledExceptionFilter函数应用
很多软件通过设置自己的异常捕获函数,捕获未处理的异常,生成报告或者日志(例如生成mini-dump文件),达到Release版本下追踪Bug的目的。...
一个宏命令,就可以程序崩溃时生成dump文件。在主程序初始化时加入DeclareDumpFile();
Windows应用程序异常:异常代码: 0xc0000005
有时应用程序异常崩溃,没有留下任何痕迹,追踪困难。这时可以打开Windows的应用程序日志,查看崩溃信息。操作方法,我的电脑右键管理:错
c++读写xml的方法可谓是五花八门,太多了,这里对常用的几种做一个总结,附demo。
三个退出程序消息:WM_CLOSE、WM_DESTROY、WM_QUIT区别
1、发送消息SendMessage、PostMessagePostMessage将消息放入消息队列后马上返回,而SendMessage直到窗口过程处理完消息后才返回2、三个消息...
c++ 写日志通用类(windows & linux 通用),可设置日志级别。代码经过较长时间的测试,可用性高。