Specify whether to analyze managed (.Net) code, native code, or both.
Syntax
-mrte-modenative | managed | mixed |
Arguments
native
| Inspect only native C++ code, and exclude managed code from the analysis. |
managed
| Inspect only managed code, and exclude native C++ code from the analysis. |
mixed
| Inspect all code. |
Default
Only native code is inspected.
Description
If your application has both native and managed code, use this to set what kind of code is inspected during a collect or collect-with action with the goal of speeding up the analysis process.
Example
In this command, a Does my target have deadlocks or data races? threading error analysis is performed only on the managed code in myApp
.
$ inspxe-cl -collect ti2 -mrte-mode managed -- myApp