|
Open CASCADE Technology
6.7.1
|
This class measures CPU time (both user and system) consumed
by current process or thread. The chronometer can be started
and stopped multiple times, and measures cumulative time.
If only the thread is measured, calls to Stop() and Show()
must occur from the same thread where Start() was called
(unless chronometer is stopped); otherwise measurement will
yield false values.
More...
#include <OSD_Chronometer.hxx>

Public Member Functions | |
| OSD_Chronometer (const Standard_Boolean ThisThreadOnly=Standard_False) | |
Initializes a stopped Chronometer. <br> | |
| virtual void | Destroy () |
| ~OSD_Chronometer () | |
| virtual void | Reset () |
| Stops and Reinitializes the Chronometer. More... | |
| virtual void | Stop () |
| Stops the Chronometer. More... | |
| virtual void | Start () |
| Starts (after Create or Reset) or restarts (after Stop) the chronometer. More... | |
| virtual void | Show () |
| Shows the current CPU user and system time on the standard output stream <cout>. The chronometer can be running (laps Time) or stopped. More... | |
| virtual void | Show (Standard_OStream &os) |
| Shows the current CPU user and system time on the output stream <os>. The chronometer can be running (laps Time) or stopped. More... | |
| void | Show (Standard_Real &UserSeconds) |
| Returns the current CPU user time in a variable. The chronometer can be running (laps Time) or stopped. More... | |
| void | Show (Standard_Real &UserSeconds, Standard_Real &SystemSeconds) |
| Returns the current CPU user and system time in variables. The chronometer can be running (laps Time) or stopped. More... | |
Static Public Member Functions | |
| static void | GetProcessCPU (Standard_Real &UserSeconds, Standard_Real &SystemSeconds) |
| Returns CPU time (user and system) consumed by the current process since its start, in seconds. The actual precision of the measurement depends on granularity provided by the system, and is platform-specific. More... | |
| static void | GetThreadCPU (Standard_Real &UserSeconds, Standard_Real &SystemSeconds) |
| Returns CPU time (user and system) consumed by the current thread since its start. Note that this measurement is platform-specific, as threads are implemented and managed differently on different platforms and CPUs. More... | |
Protected Attributes | |
| Standard_Boolean | Stopped |
This class measures CPU time (both user and system) consumed
by current process or thread. The chronometer can be started
and stopped multiple times, and measures cumulative time.
If only the thread is measured, calls to Stop() and Show()
must occur from the same thread where Start() was called
(unless chronometer is stopped); otherwise measurement will
yield false values.
| OSD_Chronometer::OSD_Chronometer | ( | const Standard_Boolean | ThisThreadOnly = Standard_False | ) |
Initializes a stopped Chronometer. <br>
If ThisThreadOnly is True, measured CPU time will account
time of the current thread only; otherwise CPU of the
process (all threads, and completed children) is measured.
|
inline |
|
virtual |
|
static |
Returns CPU time (user and system) consumed by the current
process since its start, in seconds. The actual precision of
the measurement depends on granularity provided by the system,
and is platform-specific.
|
static |
Returns CPU time (user and system) consumed by the current
thread since its start. Note that this measurement is
platform-specific, as threads are implemented and managed
differently on different platforms and CPUs.
|
virtual |
Stops and Reinitializes the Chronometer.
Reimplemented in OSD_Timer.
|
virtual |
Shows the current CPU user and system time on the
standard output stream <cout>.
The chronometer can be running (laps Time) or stopped.
Reimplemented in OSD_Timer.
|
virtual |
Shows the current CPU user and system time on the output
stream <os>.
The chronometer can be running (laps Time) or stopped.
Reimplemented in OSD_Timer.
| void OSD_Chronometer::Show | ( | Standard_Real & | UserSeconds | ) |
Returns the current CPU user time in a variable.
The chronometer can be running (laps Time) or stopped.
| void OSD_Chronometer::Show | ( | Standard_Real & | UserSeconds, |
| Standard_Real & | SystemSeconds | ||
| ) |
Returns the current CPU user and system time in variables.
The chronometer can be running (laps Time) or stopped.
|
virtual |
Starts (after Create or Reset) or restarts (after Stop)
the chronometer.
Reimplemented in OSD_Timer.
|
virtual |
Stops the Chronometer.
Reimplemented in OSD_Timer.
|
protected |
1.8.5