2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
#ifndef TOPDOWN_H
|
|
|
|
|
#define TOPDOWN_H 1
|
|
|
|
|
|
2026-01-29 22:25:33 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
|
|
struct evsel;
|
2026-01-21 18:59:54 +08:00
|
|
|
|
2026-01-29 22:25:33 +08:00
|
|
|
bool arch_topdown_sample_read(struct evsel *leader);
|
2026-01-21 18:59:54 +08:00
|
|
|
|
|
|
|
|
#endif
|