|
  PAPIC:PAPI reset.3
| |
ViewsFrom PAPIDocs
NAME
SynopsisC Interface #include <papi.h> int PAPI_reset (int EventSet ); Fortran Interface #include fpapi.h PAPIF_reset(C_INT EventSet, C_INT check ) DescriptionPAPI_reset() zeroes the values of the counters contained in EventSet . This call assumes an initialized PAPI library and a properly added event set. ArgumentsEventSet -- an integer handle for a PAPI event set as created by PAPI_create_eventset (3) ErrorsPAPI_ESYS A system or C library call failed inside PAPI, see the errno variable. PAPI_ENOEVST The EventSet specified does not exist. Examplesif (PAPI_reset(EventSet) != PAPI_OK) handle_error(1); BugsThis function has no known bugs. See Also |