File: PAPI_state.3

package info (click to toggle)
papi 6.0.0~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,056 kB
  • sloc: ansic: 103,847; fortran: 3,015; xml: 2,460; cpp: 1,845; f90: 1,360; makefile: 977; sh: 591; python: 274
file content (105 lines) | stat: -rw-r--r-- 2,324 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.TH "PAPI_state" 3 "Thu Feb 27 2020" "Version 6.0.0.0" "PAPI" \" -*- nroff -*-
.ad l
.nh
.SH NAME
PAPI_state \- 
.PP
Return the counting state of an EventSet\&.  

.SH SYNOPSIS
.br
.PP
.SH "Detailed Description"
.PP 

.PP
\fBC Interface:\fP
.RS 4
#include <\fBpapi\&.h\fP> 
.br
 int \fBPAPI_state( int  EventSet, int * status )\fP;
.RE
.PP
\fBParameters:\fP
.RS 4
\fIEventSet\fP -- an integer handle for a PAPI event set as created by \fBPAPI_create_eventset\fP 
.br
\fIstatus\fP -- an integer containing a boolean combination of one or more of the following nonzero constants as defined in the PAPI header file \fBpapi\&.h\fP: 
.PD 0

.IP "\(bu" 2
PAPI_STOPPED -- EventSet is stopped 
.IP "\(bu" 2
PAPI_RUNNING -- EventSet is running 
.IP "\(bu" 2
PAPI_PAUSED -- EventSet temporarily disabled by the library 
.IP "\(bu" 2
PAPI_NOT_INIT -- EventSet defined, but not initialized 
.IP "\(bu" 2
PAPI_OVERFLOWING -- EventSet has overflowing enabled 
.IP "\(bu" 2
PAPI_PROFILING -- EventSet has profiling enabled 
.IP "\(bu" 2
PAPI_MULTIPLEXING -- EventSet has multiplexing enabled 
.IP "\(bu" 2
PAPI_ACCUMULATING -- reserved for future use 
.IP "\(bu" 2
PAPI_HWPROFILING -- reserved for future use  
   
.PP
.RE
.PP
\fBReturn values:\fP
.RS 4
\fIPAPI_OK\fP 
.br
\fIPAPI_EINVAL\fP One or more of the arguments is invalid\&. 
.br
\fIPAPI_ENOEVST\fP The EventSet specified does not exist\&.  
   
.RE
.PP
\fBPAPI_state()\fP returns the counting state of the specified event set\&.  
   
.PP
\fBExample:\fP
.RS 4

.PP
.nf
*  int EventSet = PAPI_NULL;
*  int status = 0;
*  int ret;
*  
*  ret = PAPI_create_eventset(&EventSet);
*  if (ret != PAPI_OK) handle_error(ret);
*  
*  // Add Total Instructions Executed to our EventSet
*  ret = PAPI_add_event(EventSet, PAPI_TOT_INS);
*  if (ret != PAPI_OK) handle_error(ret);
*  
*  // Start counting
*  ret = PAPI_state(EventSet, &status);
*  if (ret != PAPI_OK) handle_error(ret);
*  printf("State is now %d\n",status);
*  ret = PAPI_start(EventSet);
*  if (ret != PAPI_OK) handle_error(ret);
*  ret = PAPI_state(EventSet, &status);
*  if (ret != PAPI_OK) handle_error(ret);
*  printf("State is now %d\n",status);
*  

.fi
.PP
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBPAPI_stop\fP \fBPAPI_start\fP 
.RE
.PP


.SH "Author"
.PP 
Generated automatically by Doxygen for PAPI from the source code\&.