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 %d0,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 %d0,status);
See Also:
Generated automatically by Doxygen for PAPI from the source code.
Mon Nov 14 2022 | Version 7.0.0.0 |