English 中文(简体)
• 如何使我的代码在坠毁前制造倾销档案?
原标题:How to make my code creating dump file before crash?

I have some code in C# and C++ ( in one project ). This code have some crash and i trying t find it. but this crash is not reproduce any time - and i can t find it.

我想混淆密码/窗户,在坠毁时制造倾销档案。

...... 我对这次坠机照相机的利用有限,这并不是开发机器。

So, How to do it ? How can i change the properties in the solution that a new dump file will created on any crash?

(目的是能够分析风化工具中的倾角)

最佳回答

我发现更容易使用ProcDump。 处理这些选择,即(以未经处理的例外情况进行倾销)、ma(w/ full process memory)和-t(在预定终止时进行倾销)。

问题回答

http://msdn.microsoft.com/en-us/library/windows/desktop/ms680360%28v=vs.85%29.aspx“rel=” 缩略语 http://brakertech.com/howto-c-generate-dump-file-on-crash/“rel=“noreferer”>。

您可以节省登记处的存款:

  1. Open RegEdit
  2. Navigate to HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsWindows Error Reporting
  3. Under Windows Error Reporting, create a new registry key named LocalDumps.




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签