summaryrefslogtreecommitdiff
path: root/simpleperf/environment.h
diff options
context:
space:
mode:
Diffstat (limited to 'simpleperf/environment.h')
-rw-r--r--simpleperf/environment.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/simpleperf/environment.h b/simpleperf/environment.h
index c405af8f..cb44ebe3 100644
--- a/simpleperf/environment.h
+++ b/simpleperf/environment.h
@@ -69,15 +69,4 @@ bool GetValidThreadsFromThreadString(const std::string& tid_str, std::set<pid_t>
bool GetExecPath(std::string* exec_path);
-// Expose the following functions for unit tests.
-struct KernelSymbol {
- uint64_t addr;
- char type;
- const char* name;
- const char* module; // If nullptr, the symbol is not in a kernel module.
-};
-
-bool ProcessKernelSymbols(const std::string& symbol_file,
- std::function<bool(const KernelSymbol&)> callback);
-
#endif // SIMPLE_PERF_ENVIRONMENT_H_