TIMING

Syntax

TIMING START|STOP|SHOW;

Description

The built-in timer is controlled with this statement.

Command Description
TIMING START [name]

Starts a new timer with the specified name. If no name is specified, the number of the timer is used as a name.

TIMING STOP [name]

Halts the timer with the specified name and displays the measured time. If no name is specified, the timer launched most recently is halted.

TIMING SHOW [name]

Displays the measured time from the specified timer without stopping the timer. If no name is specified, all timers are displayed.

Example

timing start my_timing;
timing show;
timing stop my_timing;