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 specified and only one symbol file exists in target's memory map, that symbol file is used. If no symbol file is specified and multiple symbol files exist in target's memory map, 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 is not tracked for debug and is not visible in the debug targets view. |
-fast-step
|
Enable fast stepping. Only the current process is re-synced after stepping. All other processes are not resynced when this flag is turned on. |
Note(s)
- The
<fast-exec>and<fast-step>options are not valid with disable option.
Returns
Nothing, if the OSA is configured successfully. Error, if ambiguous options are specified.
Examples
osa -file <symbol-file> -fast-step -fast-exec
Enable OSA for <symbol-file> and turn on fast-exec and fast-step modes.
osa -disable -file <symbol-file>
Disable OSA for <symbol-file>.