Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.12 22 lines 392 B view raw
1#ifndef __PERF_DUMP_INSN_H 2#define __PERF_DUMP_INSN_H 1 3 4#define MAXINSN 15 5 6#include <linux/types.h> 7 8struct thread; 9 10struct perf_insn { 11 /* Initialized by callers: */ 12 struct thread *thread; 13 u8 cpumode; 14 bool is64bit; 15 int cpu; 16 /* Temporary */ 17 char out[256]; 18}; 19 20const char *dump_insn(struct perf_insn *x, u64 ip, 21 u8 *inbuf, int inlen, int *lenp); 22#endif