|
void ITTAPI | __itt_counter_inc_v3 (const __itt_domain *domain, __itt_string_handle *name) |
| Increment a counter by one. The first call with a given name creates a counter by that name and sets its value to zero on every thread. Successive calls increment the counter value on the thread on which the call is issued. More...
|
|
void ITTAPI | __itt_counter_inc_delta_v3 (const __itt_domain *domain, __itt_string_handle *name, unsigned long long delta) |
| Increment a counter by the value specified in delta. More...
|
|
Counters are user-defined objects with a monotonically increasing value. Counter values are 64-bit unsigned integers. Counter values are tracked per-thread. Counters have names that can be displayed in the tools.
◆ __itt_counter_inc_delta_v3()
void ITTAPI __itt_counter_inc_delta_v3 |
( |
const __itt_domain * |
domain, |
|
|
__itt_string_handle * |
name, |
|
|
unsigned long long |
delta |
|
) |
| |
Increment a counter by the value specified in delta.
- Parameters
-
[in] | domain | The domain controlling the call. Counter names are not domain specific. The domain argument is used only to enable or disable the API calls. |
[in] | name | The name of the counter |
[in] | delta | The amount by which to increment the counter |
◆ __itt_counter_inc_v3()
void ITTAPI __itt_counter_inc_v3 |
( |
const __itt_domain * |
domain, |
|
|
__itt_string_handle * |
name |
|
) |
| |
Increment a counter by one. The first call with a given name creates a counter by that name and sets its value to zero on every thread. Successive calls increment the counter value on the thread on which the call is issued.
- Parameters
-
[in] | domain | The domain controlling the call. Counter names are not domain specific. The domain argument is used only to enable or disable the API calls. |
[in] | name | The name of the counter |