brintos

brintos / linux-shallow public Read only

0
0
Text · 324 B · f403720 Raw
14 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __JIT_H__3#define __JIT_H__4 5#include <data.h>6 7int jit_process(struct perf_session *session, struct perf_data *output,8		struct machine *machine, const char *filename,9		pid_t pid, pid_t tid, u64 *nbytes);10 11int jit_inject_record(const char *filename);12 13#endif /* __JIT_H__ */14