diff options
author | Elliott Hughes <enh@google.com> | 2012-08-14 14:07:59 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2012-08-14 14:07:59 -0700 |
commit | bedfe38b8ba512dd6236c00e8b4a9b01c2bd1281 (patch) | |
tree | 7c395dc45e732e921d65fe0baaa0315b954fbc87 /linker/linker.h | |
parent | b7c6991c9af3882bd13cbf6bc42da85c884aa5f5 (diff) | |
download | bionic-bedfe38b8ba512dd6236c00e8b4a9b01c2bd1281.zip bionic-bedfe38b8ba512dd6236c00e8b4a9b01c2bd1281.tar.gz bionic-bedfe38b8ba512dd6236c00e8b4a9b01c2bd1281.tar.bz2 |
More cleanup.
Make more stuff static, remove some dead code, and fix a few typos.
Change-Id: I010b0eadeaf61e2899c37014ad1e7082c70bd510
Diffstat (limited to 'linker/linker.h')
-rw-r--r-- | linker/linker.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/linker/linker.h b/linker/linker.h index c416f81..296dcd6 100644 --- a/linker/linker.h +++ b/linker/linker.h @@ -60,7 +60,6 @@ extern "C" { #define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE-1)) void debugger_init(); -const char *addr_to_name(unsigned addr); /* magic shared structures that GDB knows about */ @@ -237,7 +236,7 @@ Elf32_Sym *lookup(const char *name, soinfo **found, soinfo *start); soinfo *find_containing_library(const void *addr); const char *linker_get_error(void); -unsigned soinfo_unload(soinfo *si); +int soinfo_unload(soinfo* si); Elf32_Sym *soinfo_find_symbol(soinfo* si, const void *addr); Elf32_Sym *soinfo_lookup(soinfo *si, const char *name); void soinfo_call_constructors(soinfo *si); |