diff options
Diffstat (limited to 'runtime/jit/debugger_interface.h')
-rw-r--r-- | runtime/jit/debugger_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/jit/debugger_interface.h b/runtime/jit/debugger_interface.h index 8433e693d7..d6a8063864 100644 --- a/runtime/jit/debugger_interface.h +++ b/runtime/jit/debugger_interface.h @@ -72,6 +72,9 @@ size_t GetJitMiniDebugInfoMemUsage() REQUIRES_SHARED(Locks::jit_lock_); // TODO: Unwinding should be race-free. Remove this. Mutex* GetNativeDebugInfoLock(); +// Call given callback for every stored symbol. The callback parameters are (address, size, name). +void ForEachNativeDebugSymbol(std::function<void(const void*, size_t, const char*)> cb); + } // namespace art #endif // ART_RUNTIME_JIT_DEBUGGER_INTERFACE_H_ |