Added support for userland symbol lookup in "sc" and "call". Having

used it for an hour or so, I really wonder how we could live without it.
:-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23640 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2008-01-19 16:33:03 +00:00
parent 741e605cee
commit 2477bce504
4 changed files with 255 additions and 15 deletions
+5 -1
View File
@@ -26,7 +26,11 @@ image_id load_kernel_add_on(const char *path);
status_t unload_kernel_add_on(image_id id);
status_t elf_debug_lookup_symbol_address(addr_t address, addr_t *_baseAddress,
const char **_symbolName, const char **_imageName, bool *_exactMatch);
const char **_symbolName, const char **_imageName,
bool *_exactMatch);
status_t elf_debug_lookup_user_symbol_address(struct team* team, addr_t address,
addr_t *_baseAddress, const char **_symbolName,
const char **_imageName, bool *_exactMatch);
status_t elf_init(struct kernel_args *args);
#ifdef __cplusplus