PAPI_query_event(3) | PAPI | PAPI_query_event(3) |
PAPI_query_event -
Query if PAPI event exists.
C Interface:
PAPI_query_event() asks the PAPI library if the PAPI Preset event can be counted on this architecture. If the event CAN be counted, the function returns PAPI_OK. If the event CANNOT be counted, the function returns an error code. This function also can be used to check the syntax of native and user events.
Parameters:
Return values:
Examples
* int retval; * // Initialize the library * retval = PAPI_library_init(PAPI_VER_CURRENT); * if (retval != PAPI_VER_CURRENT) { * fprintf(stderr, * exit(1); * } * if (PAPI_query_event(PAPI_TOT_INS) != PAPI_OK) { * fprintf(stderr, * exit(1); * } *
See Also:
PAPI_remove_events
PAPI_presets
PAPI_native
Generated automatically by Doxygen for PAPI from the source code.
Fri Feb 22 2019 | Version 5.7.0.0 |