This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

13 lines
222 B
C
Raw Permalink Normal View History

2023-11-26 20:34:52 -05:00
#ifndef _PERF_ELF_H__
#define _PERF_ELF_H__
#include <set>
#include <string>
#include "symbol.h"
2023-12-12 11:55:44 +08:00
bool get_symbol_from_elf(std::set<symbol> &ss, const char *path,
size_t file_base_addr);
2023-11-26 20:34:52 -05:00
#endif