File: PAPI_list_events.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 (101 lines) | stat: -rw-r--r-- 2,361 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
.TH "PAPI_list_events" 3 "Thu Feb 27 2020" "Version 6.0.0.0" "PAPI" \" -*- nroff -*-
.ad l
.nh
.SH NAME
PAPI_list_events \- 
.PP
list the events in an event set  

.SH SYNOPSIS
.br
.PP
.SH "Detailed Description"
.PP 
List the events in an event set\&.
.PP
.PP
.nf
PAPI_list_events() returns an array of events and a count of the
.fi
.PP
 total number of events in an event set\&. This call assumes an initialized PAPI library and a successfully created event set\&.
.PP
\fBC Interface\fP
.RS 4
#include <\fBpapi\&.h\fP> 
.br
 int \fBPAPI_list_events(int *EventSet, int *Events, int *number )\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
\fI*Events\fP A pointer to a preallocated array of codes for events, such as PAPI_INT_INS\&. No more than *number codes will be stored into the array\&. 
.br
\fI*number\fP On input, the size of the Events array, or maximum number of event codes to be returned\&. A value of 0 can be used to probe an event set\&. On output, the number of events actually in the event set\&. This value may be greater than the actually stored number of event codes\&.
.RE
.PP
\fBReturn values:\fP
.RS 4
\fIPAPI_EINVAL\fP 
.br
\fIPAPI_ENOEVST\fP 
.RE
.PP
\fBExamples:\fP
.RS 4

.PP
.nf
        if (PAPI_event_name_to_code("PAPI_TOT_INS",&EventCode) != PAPI_OK)
        exit(1);
        if (PAPI_add_event(EventSet, EventCode) != PAPI_OK)
        exit(1);
        Convert a second event name to an event code 
        if (PAPI_event_name_to_code("PAPI_L1_LDM",&EventCode) != PAPI_OK)
        exit(1);
        if (PAPI_add_event(EventSet, EventCode) != PAPI_OK)
        exit(1);
        number = 0;
        if(PAPI_list_events(EventSet, NULL, &number))
        exit(1);
        if(number != 2)
        exit(1);
        if(PAPI_list_events(EventSet, Events, &number))
        exit(1);
*   

.fi
.PP
 
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBPAPI_event_code_to_name\fP 
.PP
\fBPAPI_event_name_to_code\fP 
.PP
\fBPAPI_add_event\fP 
.PP
\fBPAPI_create_eventset\fP
.RE
.PP
\fBFortran Interface:\fP
.RS 4
#include 'fpapi\&.h' 
.br
 \fBPAPI_list_events\fP( C_INT EventSet, C_INT(*) Events, C_INT number, C_INT check )
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBPAPI_list_events\fP 
.RE
.PP


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