papi_list_threads(3) - Linux man page
Name
PAPI_list_threads - list the registered thread idsSynopsis
C Interface
#include <papi.h>int PAPI_list_threads(PAPI_thread_id_t *id, int *number);Fortran Interface
<none>
Description
PAPI_list_threads() returns to the caller a list of all thread ID's known to PAPI.
This call assumes an initialized PAPI library.
Arguments
*id -- A pointer to a preallocated array. This may be NULL to only return a count of threads. No more than *number codes will be stored in the array.*number -- An input and output parameter, input specifies the number of allocated elements in *id (if non-NULL) and output specifies the number of threads.
Return Values
- PAPI_OK
- The call returned successfully.
- PAPI_EINVAL
- One or more of the arguments is invalid.
Examples
/* Reserved for example usage */