* objfiles.h (struct objfile): Clean up comments for
{obj,sym}_private to clarify what they are private to.
This commit is contained in:
parent
c1cd5aecbb
commit
0f1b1bcc12
2 changed files with 13 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Aug 10 14:50:30 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* objfiles.h (struct objfile): Clean up comments for
|
||||||
|
{obj,sym}_private to clarify what they are private to.
|
||||||
|
|
||||||
Mon Aug 9 16:45:00 1993 Stan Shebs (shebs@rtl.cygnus.com)
|
Mon Aug 9 16:45:00 1993 Stan Shebs (shebs@rtl.cygnus.com)
|
||||||
|
|
||||||
* stabsread.c, buildsym.c (hashname): Moved function to
|
* stabsread.c, buildsym.c (hashname): Moved function to
|
||||||
|
|
|
@ -270,14 +270,17 @@ struct objfile
|
||||||
|
|
||||||
struct entry_info ei;
|
struct entry_info ei;
|
||||||
|
|
||||||
/* Hook for information which is shared by sym_init and sym_read for
|
/* Hook for information for use by the symbol reader (currently used
|
||||||
this objfile. It is typically a pointer to malloc'd memory. */
|
for information shared by sym_init and sym_read). It is
|
||||||
|
typically a pointer to malloc'd memory. The symbol reader's finish
|
||||||
|
function is responsible for freeing the memory thusly allocated. */
|
||||||
|
|
||||||
PTR sym_private;
|
PTR sym_private;
|
||||||
|
|
||||||
/* Hook for other info specific to this objfile. This must point to
|
/* Hook for target-architecture-specific information. This must
|
||||||
memory allocated on one of the obstacks in this objfile, so that it
|
point to memory allocated on one of the obstacks in this objfile,
|
||||||
gets freed automatically when reading a new object file. */
|
so that it gets freed automatically when reading a new object
|
||||||
|
file. */
|
||||||
|
|
||||||
PTR obj_private;
|
PTR obj_private;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue