Jump to content

Intel Inspector: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
Koomoo (talk | contribs)
No edit summary
Line 11: Line 11:
| website = [http://software.intel.com/en-us/intel-parallel-inspector/ Parallel Inspector product page]
| website = [http://software.intel.com/en-us/intel-parallel-inspector/ Parallel Inspector product page]
}}
}}
'''Intel Parallel Inspector''' adds memory and thread checking into [[Microsoft Visual Studio]]. Parallel Inspector helps increase the reliability, security, and accuracy of C/C++ applications.
'''Intel Parallel Inspector''' adds memory and thread checking into [[Microsoft Visual Studio]]. Parallel Inspector helps increase the reliability, security, and accuracy of [[C (programming language)|C]]/[[C++]] applications.
* Reliability: Find deadlocks and memory errors that cause lockups & crashes
* Reliability: Find deadlocks and memory errors that cause lockups & crashes
* Security: Find memory and threading vulnerabilities used by hackers
* Security: Find memory and threading vulnerabilities used by hackers

Revision as of 01:00, 17 August 2009

Intel Parallel Inspector
Developer(s)Intel Developer Products
Operating systemWindows
TypeProfiler / Memory debugger
Licensesingle user
WebsiteParallel Inspector product page

Intel Parallel Inspector adds memory and thread checking into Microsoft Visual Studio. Parallel Inspector helps increase the reliability, security, and accuracy of C/C++ applications.

  • Reliability: Find deadlocks and memory errors that cause lockups & crashes
  • Security: Find memory and threading vulnerabilities used by hackers
  • Accuracy: Identify memory corruption and race conditions to eliminate erroneous results

Memory checking includes memory leaks, dangling pointers, uninitialized variables, use of invalid memory references, mismatched memory, allocation and deallocation, stack memory checks, and stack trace with controllable stack trace depth

Thread checking includes race conditions, deadlocks, depth configurable call stack analysis, diagnostic guidance, built-in knowledge of Intel Threading Building Blocks, OpenMP, and Windows threads.

It is available as part of Intel Parallel Studio or as a standalone product.

See also