summaryrefslogtreecommitdiff
path: root/gdb/psymtab.h
diff options
context:
space:
mode:
authorswagiaal <swagiaal>2010-08-31 17:26:06 +0000
committerswagiaal <swagiaal>2010-08-31 17:26:06 +0000
commitfb846e72510040325bffd8f755180ea0025108dc (patch)
tree941c55f9d9540a4d7daa677c0fc3b33bd3795c46 /gdb/psymtab.h
parent45663fac93d772deb093c3332bb8f2486713ec06 (diff)
downloadgdb-fb846e72510040325bffd8f755180ea0025108dc.tar.gz
Enable custom bcache hash function.
2010-08-25 Sami Wagiaalla <swagiaal@redhat.com> * psymtab.c (add_psymbol_to_bcache): Remove 'static' from 'static partial_symbol psymbol'. (psymbol_hash): New function. (psymbol_compare): New function. * bcache.c (hash_continue): New. (hash): Use hash_continue. * bcache.c: Add hash_function and compare_function pointers to bcache struct. (bcache_full): Use bcache->hash_function, and bcache->compare_function. (bcache_compare): New function. (bcache_xmalloc): Take hash_function and compare_function arguments and initialize the bcach's pointers. Updated comment. * objfiles.c (allocate_objfile): Updated. * symfile.c (reread_symbols): Updated. * python/py-type.c (typy_richcompare): Updated.
Diffstat (limited to 'gdb/psymtab.h')
-rw-r--r--gdb/psymtab.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/psymtab.h b/gdb/psymtab.h
index de8b67e0827..0786944b1e5 100644
--- a/gdb/psymtab.h
+++ b/gdb/psymtab.h
@@ -20,6 +20,9 @@
#ifndef PSYMTAB_H
#define PSYMTAB_H
+extern unsigned long psymbol_hash (const void *addr, int length);
+extern int psymbol_compare (const void *addr1, const void *addr2, int length);
+
void map_partial_symbol_names (void (*) (const char *, void *), void *);
void map_partial_symbol_filenames (void (*) (const char *, const char *,