| PAPI_state(3) | PAPI | PAPI_state(3) |
PAPI_state - Return the counting state of an EventSet.
C Interface:
Parameters
Return values
PAPI_state() returns the counting state of the specified event set.
Example:
int EventSet = PAPI_NULL;
int status = 0;
int ret;
ret = PAPI_create_eventset(&EventSet);
if (ret != PAPI_OK) handle_error(ret);
// Add Total Instructions Executed to our EventSet
ret = PAPI_add_event(EventSet, PAPI_TOT_INS);
if (ret != PAPI_OK) handle_error(ret);
// Start counting
ret = PAPI_state(EventSet, &status);
if (ret != PAPI_OK) handle_error(ret);
printf("State is now %d\n",status);
ret = PAPI_start(EventSet);
if (ret != PAPI_OK) handle_error(ret);
ret = PAPI_state(EventSet, &status);
if (ret != PAPI_OK) handle_error(ret);
printf("State is now %d\n",status);
See also
Generated automatically by Doxygen for PAPI from the source code.
| Thu Dec 14 2023 | Version 7.1.0.0 |