cclWinSEHConfig.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: cclmisc
  5. (C) Copyright IBM Corp. 2005, 2011
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted
  7. by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <configuration>
  10. <env_var name="CCL_HWE_ABORT" value="2:2"/>
  11. </configuration>
  12. <!--
  13. There are two formats.
  14. <1>. <env_var name="CCL_HWE_ABORT" value="Y"/> for basic dumps (backward compatible)
  15. This equals to:
  16. set CCL_HWE_ABORT=Y or y
  17. <2>. <env_var name="CCL_HWE_ABORT" value="2:2"/> in default for complex & configurable dumps
  18. This equals to:
  19. set CCL_HWE_ABORT= WinSEHExceptionLevel:WinSEHMinidumpType
  20. A>. WinSEHExceptionLevel:
  21. The value of this property dictates how windows structured exceptions are handled.
  22. This property has no effect when running on a non-windows platform.
  23. Valid values are:
  24. 0 = Do nothing.
  25. 1 = Convert windows structured exceptions to CCL exception hierarchy.
  26. 2 = Attempt to write a minidump and terminate the process.
  27. B>. WinSEHMinidumpType:
  28. This property determines what information should be included in a minidump file.
  29. Valid values are:
  30. 0 = MiniDumpNormal
  31. 1 = MiniDumpWithDataSegs
  32. 2 = MiniDumpWithFullMemory
  33. 4 = MiniDumpWithHandleData
  34. 8 = MiniDumpFilterMemory
  35. 16 = MiniDumpScanMemory
  36. 32 = MiniDumpWithUnloadedModules
  37. 64 = MiniDumpWithIndirectlyReferencedMemory
  38. 128 = MiniDumpFilterModulePaths
  39. 256 = MiniDumpWithProcessThreadData
  40. 512 = MiniDumpWithPrivateReadWriteMemory
  41. 1024 = MiniDumpWithoutOptionalData
  42. 2048 = MiniDumpWithFullMemoryInfo
  43. 4096 = MiniDumpWithThreadInfo
  44. 8192 = MiniDumpWithCodeSegs
  45. 16384 = MiniDumpWithoutAuxiliaryState
  46. 32768 = MiniDumpWithFullAuxiliaryState
  47. 65536 = MiniDumpWithPrivateWriteCopyMemory
  48. 131072 = MiniDumpIgnoreInaccessibleMemory
  49. 262144 = MiniDumpWithTokenInformation
  50. More information can be found at:
  51. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/base/minidump_type.asp
  52. -->