mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
15bcdc9477
Conflicts: tools/perf/arch/arm/annotate/instructions.c tools/perf/arch/arm64/annotate/instructions.c tools/perf/arch/powerpc/annotate/instructions.c tools/perf/arch/s390/annotate/instructions.c tools/perf/arch/x86/tests/intel-cqm.c tools/perf/ui/tui/progress.c tools/perf/util/zlib.c Signed-off-by: Ingo Molnar <mingo@kernel.org>
12 lines
305 B
C
12 lines
305 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __JIT_H__
|
|
#define __JIT_H__
|
|
|
|
#include <data.h>
|
|
|
|
int jit_process(struct perf_session *session, struct perf_data *output,
|
|
struct machine *machine, char *filename, pid_t pid, u64 *nbytes);
|
|
|
|
int jit_inject_record(const char *filename);
|
|
|
|
#endif /* __JIT_H__ */
|