|
  PAPI3:PAPI list threads.3
| |
ViewsFrom PAPIDocs
NAME
SynopsisC Interface #include <papi.h> int PAPI_list_threads(PAPI_thread_id_t * id, int * number ); Fortran Interface <none> DescriptionPAPI_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.
Examples/* Reserved for example usage */BugsThis function has no known bugs. See AlsoPAPI_get_thr_specific(3), PAPI_set_thr_specific(3), PAPI(3), PAPI_register_thread(3), PAPI_unregister_thread(3), PAPI_thread_init(3), PAPI_thread_id(3) |