go

Starts to debug your program from the current instruction.

Syntax
go [nowait | <timeout_s>]
Parameter
<none>

Runs the default thread. The command may wait for a thread break event before returning, depending on the settings config runControlSync and config autoThreadSwitch.

nowait

Returns immediately without waiting for a thread break event.

<timeout_s>

Maximum number of seconds to wait for a thread break event. Can be set to nowait .

Examples

The following table lists and defines examples of the go command.

Table 1. go Command-line debugger command - Examples
Command Description
go Runs the default thread.
go nowait Runs the default thread without waiting for a thread break event.
go 5 Runs the default thread. If config runControlSync is enabled, then the command will wait for a thread break event for a maximum of 5 seconds.