PAPI_disable_component_by_name
disables the named component
- Provided by: libpapi-dev (Version: 5.7.0+dfsg-2)
- Source: papi
- Report a bug
disables the named component
etval ENOCMP
component does not exist
etval ENOINIT
unable to disable the component, the library has already been initialized
aram
component_name
name of the component to disable.
ar
Example:
int result;
result = PAPI_disable_component_by_name("example");
if (result==PAPI_OK)
printf("component
//...
PAPI_library_init(PAPI_VER_CURRENT);
*
PAPI_disable_component_by_name() allows the user to disable a
component before PAPI_library_init() time. This is useful if the user
knows they do not with to use events from that component and want to reduce
the PAPI library overhead.
PAPI_disable_component_by_name() must be called before PAPI_library_init().
See Also:
PAPI_disable_component
Generated automatically by Doxygen for PAPI from the source code.