PAPI 7.1.0.0
Loading...
Searching...
No Matches
PAPI_library_init Class Reference

initialize the PAPI library. More...

Detailed Description

Parameters
versionupon initialization, PAPI checks the argument against the internal value of PAPI_VER_CURRENT when the library was compiled. This guards against portability problems when updating the PAPI shared libraries on your system.
Return values
PAPI_EINVALpapi.h is different from the version used to compile the PAPI library.
PAPI_ENOMEMInsufficient memory to complete the operation.
PAPI_ECMPThis component does not support the underlying hardware.
PAPI_ESYSA system or C library call failed inside PAPI, see the errno variable.

PAPI_library_init() initializes the PAPI library. PAPI_is_initialized() check for initialization. It must be called before any low level PAPI functions can be used. If your application is making use of threads PAPI_thread_init must also be called prior to making any calls to the library other than PAPI_library_init() .

Examples:
int retval;
if (retval != PAPI_VER_CURRENT && retval > 0) {
fprintf(stderr,"PAPI library version mismatch!\en");
exit(1); }
if (retval < 0)
handle_error(retval);
handle_error(retval)
check for initialization
initialize the PAPI library.
#define PAPI_VER_CURRENT
Definition: f90papi.h:54
#define PAPI_LOW_LEVEL_INITED
Definition: f90papi.h:269
FILE * stderr
int retval
Definition: zero_fork.c:53
Bug:
If you don't call this before using any of the low level PAPI calls, your application could core dump.
See also
PAPI_thread_init PAPI

The documentation for this class was generated from the following file: