Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

papilibrarysupportedcall(3papi) [opensolaris man page]

papiLibrarySupportedCall(3PAPI) 			      PAPI Library Functions				   papiLibrarySupportedCall(3PAPI)

NAME
papiLibrarySupportedCall, papiLibrarySupportedCalls - determine if a PAPI function returns valid data SYNOPSIS
cc [ flag... ] file... -lpapi [ library... ] #include <papi.h> char papiLibrarySupportedCall(const char *name); char **papiLibrarySupportedCalls(void); PARAMETERS
name the name of a PAPI function DESCRIPTION
The papiLibrarySupportedCall() function queries to determine if a particular PAPI function returns valid data other than PAPI_OPERA- TION_NOT_SUPPORTED. The papiLibrarySupportedCalls() function enumerates all PAPI functions that return valid data other than PAPI_OPERATION_NOT_SUPPORTED. RETURN VALUES
The papiLibrarySupportedCall() function returns PAPI_TRUE if the specified PAPI function returns valid data other than PAPI_OPERA- TION_NOT_SUPPORTED. Otherwise, PAPI_FALSE is returned. The papiLibrarySupportedCalls() function returns a null-terminated array of strings listing all of the PAPI functions that return valid data other than PAPI_OPERATION_NOT_SUPPORTED. Otherwise, NULL is returned. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Volatile | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
libpapi(3LIB), attributes(5) SunOS 5.11 17 Jan 2007 papiLibrarySupportedCall(3PAPI)

Check Out this Related Man Page

PAPI_is_initialized(3)						       PAPI						    PAPI_is_initialized(3)

NAME
PAPI_is_initialized - check for initialization SYNOPSIS
Detailed Description @retval PAPI_NOT_INITED Library has not been initialized @retval PAPI_LOW_LEVEL_INITED Low level has called library init @retval PAPI_HIGH_LEVEL_INITED High level has called library init @retval PAPI_THREAD_LEVEL_INITED Threads have been inited @param version upon 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. @par Examples: int retval; retval = PAPI_library_init(PAPI_VER_CURRENT); if (retval != PAPI_VER_CURRENT && retval > 0) { fprintf(stderr,"PAPI library version mismatch! "); exit(1); } if (retval < 0) handle_error(retval); retval = PAPI_is_initialized(); if (retval != PAPI_LOW_LEVEL_INITED) handle_error(retval); * 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. See Also: PAPI PAPI_thread_init Author Generated automatically by Doxygen for PAPI from the source code. Version 5.2.0.0 Tue Jun 17 2014 PAPI_is_initialized(3)
Man Page