123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cclmisc
- (C) Copyright IBM Corp. 2005, 2011
- US Government Users Restricted Rights - Use, duplication or disclosure restricted
- by GSA ADP Schedule Contract with IBM Corp.
- -->
- <configuration>
- <env_var name="CCL_HWE_ABORT" value="2:2"/>
- </configuration>
-
- <!--
- There are two formats.
- <1>. <env_var name="CCL_HWE_ABORT" value="Y"/> for basic dumps (backward compatible)
- This equals to:
- set CCL_HWE_ABORT=Y or y
-
- <2>. <env_var name="CCL_HWE_ABORT" value="2:2"/> in default for complex & configurable dumps
- This equals to:
- set CCL_HWE_ABORT= WinSEHExceptionLevel:WinSEHMinidumpType
-
- A>. WinSEHExceptionLevel:
- The value of this property dictates how windows structured exceptions are handled.
- This property has no effect when running on a non-windows platform.
- Valid values are:
- 0 = Do nothing.
- 1 = Convert windows structured exceptions to CCL exception hierarchy.
- 2 = Attempt to write a minidump and terminate the process.
-
- B>. WinSEHMinidumpType:
- This property determines what information should be included in a minidump file.
-
- Valid values are:
- 0 = MiniDumpNormal
- 1 = MiniDumpWithDataSegs
- 2 = MiniDumpWithFullMemory
- 4 = MiniDumpWithHandleData
- 8 = MiniDumpFilterMemory
- 16 = MiniDumpScanMemory
- 32 = MiniDumpWithUnloadedModules
- 64 = MiniDumpWithIndirectlyReferencedMemory
- 128 = MiniDumpFilterModulePaths
- 256 = MiniDumpWithProcessThreadData
- 512 = MiniDumpWithPrivateReadWriteMemory
- 1024 = MiniDumpWithoutOptionalData
- 2048 = MiniDumpWithFullMemoryInfo
- 4096 = MiniDumpWithThreadInfo
- 8192 = MiniDumpWithCodeSegs
- 16384 = MiniDumpWithoutAuxiliaryState
- 32768 = MiniDumpWithFullAuxiliaryState
- 65536 = MiniDumpWithPrivateWriteCopyMemory
- 131072 = MiniDumpIgnoreInaccessibleMemory
- 262144 = MiniDumpWithTokenInformation
-
- More information can be found at:
- http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/base/minidump_type.asp
- -->
|