PAPI  5.7.0.0
PAPI_stop_counters Class Reference

Stop counting hardware events and reset values to zero. More...

Detailed Description

C Interface:
#include <papi.h>
int PAPI_stop_counters( long long *values, int array_len );
Parameters
*valuesan array where to put the counter values
array_lenthe number of items in the *values array
Postcondition
After this function is called, the values are reset to zero.
Return values
PAPI_EINVALOne or more of the arguments is invalid.
PAPI_ENOTRUNThe EventSet is not started yet.
PAPI_ENOEVSTThe EventSet has not been added yet.

The PAPI_stop_counters() function stops the counters and copies the counts into the *values array. The counters must have been started by a previous call to PAPI_start_counters().

long long values[2];
handle_error(1);
handle_error(1);
See also
PAPI_read_counters() PAPI_start_counters() PAPI_set_opt()

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