mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 00:34:52 +00:00
25 lines
475 B
C
25 lines
475 B
C
![]() |
#ifndef PERF_UTIL_OFF_CPU_H
|
||
|
#define PERF_UTIL_OFF_CPU_H
|
||
|
|
||
|
struct evlist;
|
||
|
struct perf_session;
|
||
|
|
||
|
#define OFFCPU_EVENT "offcpu-time"
|
||
|
|
||
|
#ifdef HAVE_BPF_SKEL
|
||
|
int off_cpu_prepare(struct evlist *evlist);
|
||
|
int off_cpu_write(struct perf_session *session);
|
||
|
#else
|
||
|
static inline int off_cpu_prepare(struct evlist *evlist __maybe_unused)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
static inline int off_cpu_write(struct perf_session *session __maybe_unused)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* PERF_UTIL_OFF_CPU_H */
|