示例#1
0
    def __init__(self):
        PyCdb.__init__(self)

        self.ignore_exceptions = [
            0x4000001f, # wow64 exception
            0xe06d7363, # C++ exception
            0x40080201,0x80010108, 0x8001010D, 0x6A6, 0x8001010D, 0x40080201
        ]
示例#2
0
    def __init__(self):
        PyCdb.__init__(self)

        self.ignore_exceptions = [
            0x4000001f,  # wow64 exception
            0xe06d7363,  # C++ exception
            0x40080201,
            0x80010108,
            0x8001010D,
            0x6A6,
            0x8001010D,
            0x40080201
        ]
示例#3
0
 def __init__(self):
     PyCdb.__init__(self)
     self.ignore_exceptions = [
         0x4000001f              # wow64 exception
     ]