Changed elf_lookup_symbol_address() prototype - due to the way it now returns

its information, it's no longer safe to call this function outside the debugger.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7697 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-05-31 21:38:09 +00:00
parent ecfed6a718
commit 6fccd3b788
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ status_t elf_load_user_image(const char *path, struct team *team, int flags, add
image_id load_kernel_add_on(const char *path);
status_t unload_kernel_add_on(image_id id);
status_t elf_lookup_symbol_address(addr_t address, addr_t *baseAddress, char *text, size_t length);
status_t elf_lookup_symbol_address(addr_t address, addr_t *_baseAddress,
const char **_symbolName, const char **_imageName, bool *_exactMatch);
status_t elf_init(kernel_args *args);
#ifdef __cplusplus