Concurrent code analyzer

感情迁移 提交于 2019-12-05 17:29:51

Although (many) concurrency related bugs can be found using static code analysis, it doesn't apply to every type of bug. Some bugs only appear at runtime under certain conditions.

IBM has a tool called ConTest that "schedules the execution of program threads such that program scenarios that are likely to contain race conditions, deadlocks, and other intermittent bugs (collectively called synchronization problems) are forced to appear with high frequency".

This requires running (unit)tests against an instrumented version of your app. More background info in this developerWorks article.

This paper describes a tool that performs static analysis of a library and determines if deadlock is possible.

Some more :

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!