diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2019-09-30 11:49:25 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2019-09-30 11:49:57 -0400 |
commit | 703a86c2fa74e6c998ed24a8823658119f176b2d (patch) | |
tree | 7fc9d2839ea1f065fe04c7dafde70fc8f386ef9b /gdb/psympriv.h | |
parent | 663f67df1e8a7ac0ab8c8c577817067ca32ea4be (diff) | |
download | binutils-703a86c2fa74e6c998ed24a8823658119f176b2d.zip binutils-703a86c2fa74e6c998ed24a8823658119f176b2d.tar.gz binutils-703a86c2fa74e6c998ed24a8823658119f176b2d.tar.bz2 |
gdb: re-write add_psymbol_to_list doc, move it to header file
The comment above the add_psymbol_to_list function seems outdated and
misleading, here's an attempt at improving it.
gdb/ChangeLog:
* psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
* psympriv.h (add_psymbol_to_list): Move comment here and update
it.
Diffstat (limited to 'gdb/psympriv.h')
-rw-r--r-- | gdb/psympriv.h | 35 |
1 files changed, 26 insertions, 9 deletions
diff --git a/gdb/psympriv.h b/gdb/psympriv.h index 9d22f5c..3e89742 100644 --- a/gdb/psympriv.h +++ b/gdb/psympriv.h @@ -286,15 +286,32 @@ enum class psymbol_placement GLOBAL }; -/* Add any kind of symbol to a partial_symbol vector. */ - -extern void add_psymbol_to_list (const char *, int, - bool, domain_enum, - enum address_class, - short /* section */, - enum psymbol_placement, - CORE_ADDR, - enum language, struct objfile *); +/* Add a symbol to the partial symbol table of OBJFILE. + + If COPY_NAME is true, make a copy of NAME, otherwise use the passed + reference. + + THECLASS is the type of symbol. + + SECTION is the index of the section of OBJFILE in which the symbol is found. + + WHERE determines whether the symbol goes in the list of static or global + partial symbols of OBJFILE. + + COREADDR is the address of the symbol. For partial symbols that don't have + an address, zero is passed. + + LANGUAGE is the language from which the symbol originates. This will + influence, amongst other things, how the symbol name is demangled. */ + +extern void add_psymbol_to_list (const char *name, int namelength, + bool copy_name, domain_enum domain, + enum address_class theclass, + short section, + psymbol_placement where, + CORE_ADDR coreaddr, + enum language language, + struct objfile *objfile); /* Initialize storage for partial symbols. If partial symbol storage has already been initialized, this does nothing. TOTAL_SYMBOLS is |