Configure OS awareness for a symbol file.
Syntax
osa -file <file-name> [options]
Configure OS awareness for the symbol file <file-name>
specified. If no symbol file is specifed and only one symbol file exists in target's memory map, then that symbol file is used. If no symbol file is specifed and multiple symbol files exist in target's memory map, then an error is thrown.
Options
Option | Description |
---|---|
-disable
|
Disable OS awareness for a symbol file. If this option is not specified, OS awareness is enabled. |
-fast-exec
|
Enable fast process start. New processes will not be tracked for debug and are not visible in the debug targets view. |
-fast-step
|
Enable fast stepping. Only the current process will be re-synced after stepping. All other processes will not be re-synced when this flag is turned on. |
Note(s)
- fast-exec and fast-step options are not valid with disable option.
Returns
Nothing, if OSA is configured successfully. Error, if ambiguous options are specified.
Example(s)
osa -file <symbol-file>
-fast-step -fast-exec
Enable OSA for <symbole-file>
and turn on fast-exec and fast-step modes.
osa -disable -file <symbol-file>
Disable OSA for <symbol-file>
.