Unix and Linux Discussions Tagged with values |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
20,801 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
10,352 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
13,278 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
10,240 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,769 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,828 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
62,585 |
Shell Programming and Scripting |
|
|
|
10 |
7,161 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
9,156 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,063 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,905 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
6,478 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
6,856 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,315 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,948 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,017 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
12,806 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,448 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,430 |
Shell Programming and Scripting |
|
|
|
3 |
2,896 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,440 |
Shell Programming and Scripting |
|
|
|
6 |
21,909 |
Homework & Coursework Questions |
|
|
|
3 |
6,523 |
Shell Programming and Scripting |
|
|
|
1 |
1,728 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,479 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,384 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,774 |
Shell Programming and Scripting |
|
|
|
8 |
4,216 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
4,899 |
Shell Programming and Scripting |
|
|
|
1 |
1,676 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,358 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,118 |
Shell Programming and Scripting |
|
|
|
3 |
2,495 |
Shell Programming and Scripting |
|
|
|
1 |
4,644 |
UNIX for Dummies Questions & Answers |
|
|
|
14 |
5,435 |
Shell Programming and Scripting |
|
|
|
32 |
9,582 |
Shell Programming and Scripting |
|
|
|
1 |
2,578 |
Programming |
|
|
|
1 |
4,035 |
Shell Programming and Scripting |
|
|
|
5 |
3,557 |
Shell Programming and Scripting |
|
|
|
2 |
10,279 |
Shell Programming and Scripting |
PAPI_read_counters(3) PAPI PAPI_read_counters(3)
NAME
PAPI_read_counters -
Read and reset counters.
SYNOPSIS
Detailed Description
@par C Interface:
int PAPI_read_counters( long long *values, int array_len );
Parameters:
*values an array to hold the counter values of the counting events
arry_len the number of items in the *events array
Precondition:
These calls assume an initialized PAPI library and a properly added event set.
Postcondition:
The counters are reset and left running after the call.
Return values:
PAPI_EINVAL One or more of the arguments is invalid.
PAPI_ESYS A system or C library call failed inside PAPI, see the errno variable.
PAPI_read_counters() copies the event counters into the array *values.
do_100events();
if ( PAPI_read_counters( values, num_hwcntrs ) != PAPI_OK )
handlw_error(1);
// values[0] now equals 100
do_100events();
if ( PAPI_accum_counters( values, num_hwcntrs ) != PAPI_OK )
handle_error(1);
// values[0] now equals 200
values[0] = -100;
do_100events();
if ( PAPI_accum_counters(values, num_hwcntrs ) != PAPI_OK )
handle_error();
// values[0] now equals 0
*
See Also:
PAPI_set_opt() PAPI_start_counters()
Fortran Interface:
#include 'fpapi.h'
PAPIF_read_counters( C_LONG_LONG(*) values, C_INT array_len, C_INT check )
See Also:
PAPI_read_counters
Author
Generated automatically by Doxygen for PAPI from the source code.
Version 5.2.0.0 Tue Jun 17 2014 PAPI_read_counters(3)