Search Results

0
votes

WSACleanUp causes an exception

I'd be interested to know what you'd find if you used the wt "trace and watch data" command in windows debugger: Set a break point at the beginning of the WSACleanup: bp ws2_32! …
0
votes

How to detect when an exception is in flight?

one way would to replace the exception handling machinery with your own. on the other hand, it …
0
votes

c++ Debugging Exception c0000139

Enable loader snaps (gflags -i yourapp.exe +sls) and have it pinpoint the library its failing to find/load (starting the program under the debugger will spew all the loader diagnostics). Al …