zoukankan      html  css  js  c++  java
  • Adplus抓包配置文件

    StackOverflowException只有FirstChance

    其余异常可以在SecondChance时抓取,忽略FirstChance

    所以可以单独配置

    <ADPlus>

    <Settings>
        <RunMode>CRASH</RunMode>
        <Option>Quiet</Option>
        <OutputDir>d:\Dump</OutputDir>
        <ProcessName>WinDebugCrash.exe</ProcessName> 
    </Settings>
    <Exceptions>
        <Option>FullDumpOnFirstChance</Option>
        <Option>MiniDumpOnSecondChance</Option>
        <Option>NoDumpOnFirstChance</Option>
        <Option>NoDumpOnSecondChance</Option>
        <Config>
            <Code>AllExceptions</Code>
            <Actions1>Void</Actions1>
            <Actions2>Void</Actions2>
            <ReturnAction1>GN</ReturnAction1>
            <ReturnAction2>GN</ReturnAction2>
        </Config>       
        <Config>
            <!--
            av = AccessViolation
            ch = InvalidHandle
            ii = IllegalInstruction
            dz =  IntegerDivide
            c000008e = FloatingDivide
            iov = IntegerOverflow
            lsq = InvalidLockSequence
            sov = StackOverflowException
            eh = CPlusPlusEH
            * = UnknownException
            clr = NET_CLR
            bpe = CONTRL_C_OR_Debug_Break
            ld = DLL_Load
            ud = DLL_UnLoad
            epr = Process_Shut_Down
            sbo = Stack_buffer_overflow
            -->
            <Code>sov;sbo;dz;*</Code>
            <Actions1>Void</Actions1>
            <CustomActions1>!runaway</CustomActions1>
            <Actions2>Log;Time;Stack;FullDump;EventLog</Actions2>
            <CustomActions2>!runaway</CustomActions2>
            <!--
            G = go
            GN = go unhandled exception
            GH = go handled exception
            Q = quit
            QD = quit and detach
            -->
            <ReturnAction1>GN</ReturnAction1>
            <ReturnAction2>GN</ReturnAction2>
        </Config>
        <Config>
            <Code>sov</Code>
            <Actions1>Log;Time;Stack;FullDump;EventLog</Actions1>
            <Actions2>Void</Actions2>
            <ReturnAction1>GN</ReturnAction1>
            <ReturnAction2>GN</ReturnAction2>
        </Config>
        <Config>
            <Code>clr</Code>
            <Actions1>Void</Actions1>
            <Actions2>Log;Time;Stack;FullDump;EventLog</Actions2>
            <ReturnAction1>GN</ReturnAction1>
            <ReturnAction2>GN</ReturnAction2>
        </Config>
        <Config>
            <Code>epr</Code>
            <Actions1>Void</Actions1>
            <Actions2>Log;Time;Stack;FullDump;EventLog</Actions2>
            <ReturnAction1>GN</ReturnAction1>
            <ReturnAction2>GN</ReturnAction2>
        </Config>
    </Exceptions>
    </ADPlus>
  • 相关阅读:
    谈谈数据库连接池的原理
    认识wsgi
    mysql存储引擎介绍,索引
    Go语言并发组件--Goroutine
    【高级课程笔记】—— Echarts高级应用(二)
    【高级课程笔记】—— Echarts高级应用(一)
    【高级课程笔记】—— Echarts常用图表
    【高级课程笔记】—— Echarts入门&常用组件
    【重点突破】—— js防抖和节流(转)
    【重点突破】—— moment.js获取时间格式化
  • 原文地址:https://www.cnblogs.com/heters/p/2507898.html
Copyright © 2011-2022 走看看