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
2023-12-12 11:55:44 +08:00

13 lines
222 B
C++

#ifndef _PERF_ELF_H__
#define _PERF_ELF_H__
#include <set>
#include <string>
#include "symbol.h"
bool get_symbol_from_elf(std::set<symbol> &ss, const char *path,
size_t file_base_addr);
#endif