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

check for initialization More...

Detailed Description

Return values
PAPI_NOT_INITEDLibrary has not been initialized
PAPI_LOW_LEVEL_INITEDLow level has called library init
PAPI_HIGH_LEVEL_INITEDHigh level has called library init
PAPI_THREAD_LEVEL_INITED
Threads have been inited
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.
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
PAPI_is_initialized() returns the status of the PAPI library. The PAPI library can be in one of four states, as described under RETURN VALUES.
Bug:
If you don't call this before using any of the low level PAPI calls, your application could core dump.
See also
PAPI
PAPI_thread_init

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