xref: /aosp_15_r20/external/bcc/src/cc/perf_reader.h (revision 387f9dfdfa2baef462e92476d413c7bc2470293e)
1*387f9dfdSAndroid Build Coastguard Worker /*
2*387f9dfdSAndroid Build Coastguard Worker  * Copyright (c) 2015 PLUMgrid, Inc.
3*387f9dfdSAndroid Build Coastguard Worker  *
4*387f9dfdSAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
5*387f9dfdSAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
6*387f9dfdSAndroid Build Coastguard Worker  * You may obtain a copy of the License at
7*387f9dfdSAndroid Build Coastguard Worker  *
8*387f9dfdSAndroid Build Coastguard Worker  * http://www.apache.org/licenses/LICENSE-2.0
9*387f9dfdSAndroid Build Coastguard Worker  *
10*387f9dfdSAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
11*387f9dfdSAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
12*387f9dfdSAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*387f9dfdSAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
14*387f9dfdSAndroid Build Coastguard Worker  * limitations under the License.
15*387f9dfdSAndroid Build Coastguard Worker  */
16*387f9dfdSAndroid Build Coastguard Worker 
17*387f9dfdSAndroid Build Coastguard Worker #ifndef PERF_READER_H
18*387f9dfdSAndroid Build Coastguard Worker #define PERF_READER_H
19*387f9dfdSAndroid Build Coastguard Worker 
20*387f9dfdSAndroid Build Coastguard Worker #include "libbpf.h"
21*387f9dfdSAndroid Build Coastguard Worker 
22*387f9dfdSAndroid Build Coastguard Worker #ifdef __cplusplus
23*387f9dfdSAndroid Build Coastguard Worker extern "C" {
24*387f9dfdSAndroid Build Coastguard Worker #endif
25*387f9dfdSAndroid Build Coastguard Worker 
26*387f9dfdSAndroid Build Coastguard Worker struct perf_reader;
27*387f9dfdSAndroid Build Coastguard Worker 
28*387f9dfdSAndroid Build Coastguard Worker struct perf_reader * perf_reader_new(perf_reader_raw_cb raw_cb,
29*387f9dfdSAndroid Build Coastguard Worker                                      perf_reader_lost_cb lost_cb,
30*387f9dfdSAndroid Build Coastguard Worker                                      void *cb_cookie, int page_cnt);
31*387f9dfdSAndroid Build Coastguard Worker void perf_reader_free(void *ptr);
32*387f9dfdSAndroid Build Coastguard Worker int perf_reader_mmap(struct perf_reader *reader);
33*387f9dfdSAndroid Build Coastguard Worker void perf_reader_event_read(struct perf_reader *reader);
34*387f9dfdSAndroid Build Coastguard Worker int perf_reader_poll(int num_readers, struct perf_reader **readers, int timeout);
35*387f9dfdSAndroid Build Coastguard Worker int perf_reader_consume(int num_readers, struct perf_reader **readers);
36*387f9dfdSAndroid Build Coastguard Worker int perf_reader_fd(struct perf_reader *reader);
37*387f9dfdSAndroid Build Coastguard Worker void perf_reader_set_fd(struct perf_reader *reader, int fd);
38*387f9dfdSAndroid Build Coastguard Worker 
39*387f9dfdSAndroid Build Coastguard Worker #ifdef __cplusplus
40*387f9dfdSAndroid Build Coastguard Worker }
41*387f9dfdSAndroid Build Coastguard Worker #endif
42*387f9dfdSAndroid Build Coastguard Worker 
43*387f9dfdSAndroid Build Coastguard Worker #endif
44