Are there any tools that can help find race conditions when testing multi-threaded .net code? I'm looking for something with similar capabilities to IBM's ConTest tool for Java.
|
8
|
|
|
|
|
|
There’s a great windbg extension, written by Steve Johnson, called sosex which has a deadlock finding command. You can find it at http://www.stevestechspot.com/downloads/sosex_32.zip and you can read more about it here: http://www.stevestechspot.com/SOSEXANewDebuggingExtensionForManagedCode.aspx and here: http://www.stevestechspot.com/SOSEXUpdatedV11Available.aspx. |
||
|
|
|
|
Have you seen Debug Inspector (www.debuginspector.com) ? It does managed and unmanaged deadlocks and covers both WaitForSingleObject and WaitForMultipleObjects and works for XP and Vista |
|||
|
|
|
|
This announcement from Microsoft Research sounds like they have a tool that does exactly what I want. Unfortunately there's no .net version yet, but there is one planned. To quote the site:
|
||
|
|
|
Typemock Racer might be what you're looking for but I haven't used it - I just remembered something about deadlocks :) Or this: Deadlock Detector |
||
|
|
