Is there any library which can detect the faulty statement at runtime?
-
Sometimes my application hangs or freezes for few seconds. After sometime it again comes back to normal. Is there any library which can either dump some useful information or detect faulty statements either in debugging or release state?
-
Sometimes my application hangs or freezes for few seconds. After sometime it again comes back to normal. Is there any library which can either dump some useful information or detect faulty statements either in debugging or release state?
Yes - the MiniDumpWriteDump[^] function.
-
Yes - the MiniDumpWriteDump[^] function.
I read the detail about MiniDumpWriteDump function. I have a query. Does it make the dump while an exception occurs & application crashes or Can it make the dump while an application freezes or hangs but does not raise an exception? Hang might be a deadlock situation or infinite loop etc
-
Sometimes my application hangs or freezes for few seconds. After sometime it again comes back to normal. Is there any library which can either dump some useful information or detect faulty statements either in debugging or release state?