C + + software add dump debug print log (recommended) _c language

Source: Internet
Author: User

C + + software add dump debug print log (recommended)

#include <DbgHelp.h> #pragma comment (lib, "Dbghelp.lib") LONG winapi Toplevelexceptionfilter (struct _exception_p 
   Ointers *pexceptioninfo) {//cout << "Enter toplevelexceptionfilter Function" << Endl;
   TCHAR Szpath[max_path] = {0};
   TCHAR Szfilename[max_path] = {0};
   tchar* szversion = "v1.0";
   TCHAR dwbuffersize = MAX_PATH;
   SYSTEMTIME Stlocaltime;
   Getlocaltime (&stlocaltime);
   CreateDirectory (szFileName, NULL); stringcchprintf (szFileName, MAX_PATH, "%s-%04d%02d%02d-%02d%02d%02d-%ld-%ld.dmp", Szversion, StLocalTime.wYear, Stlocaltime.wmonth, Stlocaltime.wday, Stlocaltime.whour, Stlocaltime.wminute, Stlocaltime.wsecond, GetCurrentProces

    SId (), GetCurrentThreadID ()); 
   HANDLE hfile = CreateFile (szFileName, generic_write, 0, NULL, create_always, file_attribute_normal, NULL); 
    Minidump_exception_information Stexceptionparam; 
    Stexceptionparam.threadid = GetCurrentThreadID (); Stexceptionparam.exceptionpointers = PexcEptioninfo; 
    Stexceptionparam.clientpointers = FALSE; MiniDumpWriteDump (GetCurrentProcess (), GetCurrentProcessId (), hfile, Minidumpwithfullmemory, &stExceptionParam 
    , NULL, NULL); 
    CloseHandle (hfile);

    GetChar ();
return exception_execute_handler;
 }

//----------------------------------------------

Call this function at the very beginning of the program

SetUnhandledExceptionFilter (Toplevelexceptionfilter);

Above this C + + software add dump debug print log (recommended) is a small series to share all the content, hope to give you a reference, but also hope that we support the cloud-dwelling community.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.