diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:22:18 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:22:18 +0200 |
commit | bcc5cc28c6dc5178e8f4fd0cc521034ae5def388 (patch) | |
tree | bacc60d27b435d32172f97643576c5e4e953177d /zen/debug_minidump.h | |
parent | 5.9 (diff) | |
download | FreeFileSync-bcc5cc28c6dc5178e8f4fd0cc521034ae5def388.tar.gz FreeFileSync-bcc5cc28c6dc5178e8f4fd0cc521034ae5def388.tar.bz2 FreeFileSync-bcc5cc28c6dc5178e8f4fd0cc521034ae5def388.zip |
5.10
Diffstat (limited to 'zen/debug_minidump.h')
-rw-r--r-- | zen/debug_minidump.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/zen/debug_minidump.h b/zen/debug_minidump.h new file mode 100644 index 00000000..4ef0106e --- /dev/null +++ b/zen/debug_minidump.h @@ -0,0 +1,39 @@ +// ************************************************************************** +// * This file is part of the FreeFileSync project. It is distributed under * +// * GNU General Public License: http://www.gnu.org/licenses/gpl.html * +// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved * +// ************************************************************************** + +#ifndef DEBUGNEW_H_INCLUDED +#define DEBUGNEW_H_INCLUDED + +#ifndef _MSC_VER +#error currently for use with MSC only +#endif + +/* +Better std::bad_alloc +--------------------- +overwrite "operator new" to automatically write mini dump and get info about bytes requested + +1. Compile "debug_new.cpp" + +Minidumps http://msdn.microsoft.com/en-us/library/windows/desktop/ee416349(v=vs.85).aspx +---------------------------------------------------------------------------------------- +1. Compile "debug_new.cpp" +2. Compile "release" build with: + - C/C++ -> General: Debug Information Format: "Program Database" (/Zi). + - C/C++ -> Optimization: Omit Frame Pointers: No (/Oy-) - avoid call stack mess up! + - Linker -> Debugging: Generate Debug Info: Yes (/DEBUG) + - Linker -> Optimization: References: Yes (/OPT:REF). + - Linker -> Optimization: Enable COMDAT Folding: Yes (/OPT:ICF). +Optional: + - C/C++ -> Optimization: Disabled (/Od) +*/ + +namespace debug_tools +{ +void writeMinidump(); +} + +#endif // DEBUGNEW_H_INCLUDED |