1
0
Files
kernel-49/tools/perf/util/unwind-libdw.h
Andrey Zolotarev e72e9355e3 start the android-4.9 tree
git: https://android.googlesource.com/kernel/common
branch: android-4.9
commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
2018-11-15 21:36:32 +03:00

24 lines
501 B
C

#ifndef __PERF_UNWIND_LIBDW_H
#define __PERF_UNWIND_LIBDW_H
#include <elfutils/libdwfl.h>
#include "event.h"
#include "thread.h"
#include "unwind.h"
bool libdw__arch_set_initial_registers(Dwfl_Thread *thread, void *arg);
struct unwind_info {
Dwfl *dwfl;
struct perf_sample *sample;
struct machine *machine;
struct thread *thread;
unwind_entry_cb_t cb;
void *arg;
int max_stack;
int idx;
struct unwind_entry entries[];
};
#endif /* __PERF_UNWIND_LIBDW_H */